Skip to content

Commit

Permalink
Merge pull request #8 from BanklessDAO/meta
Browse files Browse the repository at this point in the history
feat: jenkins action
  • Loading branch information
okhaimie-dev authored Oct 6, 2023
2 parents f88c78e + 7c2d519 commit 61281ce
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export default async function About() {
<PageLinks
className="mt-24 sm:mt-32 lg:mt-40"
title="From the blog"
intro="Our team of experienced designers and developers has just one thing on their mind; working on your ideas to draw a smile on the face of your users worldwide. From conducting Brand Sprints to UX Design."
intro="Our experts share insider perspectives on projects, progress and the future of tech - read our team's candid discussions and cutting-edge insights on the organization blog."
pages={blogArticles}
/>

Expand Down
7 changes: 3 additions & 4 deletions src/app/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,16 @@ import { loadArticles } from '@/lib/mdx'

export const metadata: Metadata = {
title: 'Blog',
description:
'Stay up-to-date with the latest industry news as our marketing teams finds new ways to re-purpose old CSS tricks articles.',
description: 'Perspectives and insights from our team.',
}

export default async function Blog() {
let articles = await loadArticles()

return (
<>
<PageIntro eyebrow="Blog" title="The latest articles and news">
<p className='text-gray-300'>
<PageIntro eyebrow="Blog" title="Perspectives and insights from our team">
<p className="text-gray-300">
Stay up-to-date with the latest industry news.
</p>
</PageIntro>
Expand Down
10 changes: 5 additions & 5 deletions src/components/PageLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ function PageLink({ page }: { page: Page }) {
</h3>
<time
dateTime={page.date}
className="order-first text-sm text-neutral-600"
className="order-first text-sm text-gray-400"
>
{formatDate(page.date)}
</time>
<p className="mt-2.5 text-base text-neutral-600">{page.description}</p>
<p className="mt-2.5 text-base text-gray-400">{page.description}</p>
<Link
href={page.href}
className="mt-6 flex gap-x-3 text-base font-semibold text-white transition hover:text-neutral-700"
className="hover:text-gray-400 mt-6 flex gap-x-3 text-base font-semibold text-white transition"
aria-label={`Read more: ${page.title}`}
>
Read more
Expand All @@ -71,9 +71,9 @@ export function PageLinks({
}) {
return (
<div className={clsx('relative pt-24 sm:pt-32 lg:pt-40', className)}>
<div className="absolute inset-x-0 top-0 -z-10 h-[884px] overflow-hidden rounded-t-4xl bg-gradient-to-b from-neutral-50">
<div className="absolute inset-x-0 top-0 -z-10 h-[884px] overflow-hidden rounded-t-4xl bg-gradient-to-b from-neutral-950">
<GridPattern
className="absolute inset-0 h-full w-full fill-neutral-100 stroke-neutral-950/5 [mask-image:linear-gradient(to_bottom_left,white_40%,transparent_50%)]"
className="absolute inset-0 h-full w-full fill-neutral-700 stroke-neutral-950/5 [mask-image:linear-gradient(to_bottom_left,white_40%,transparent_50%)]"
yOffset={-270}
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/SectionIntro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function SectionIntro({
<div
className={clsx(
'mt-6 text-xl',
invert ? 'text-neutral-300' : 'text-neutral-600',
invert ? 'text-gray-400' : 'text-gray-400',
)}
>
{children}
Expand Down

0 comments on commit 61281ce

Please sign in to comment.