Skip to content

Commit 5d438c8

Browse files
fix: merge confilct (#290)
1 parent c0e9024 commit 5d438c8

2 files changed

Lines changed: 38 additions & 0 deletions

File tree

app/(landing)/blog/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import TestimonialSection from '@/components/testimonials/TestimonialsSection';
77
import { testimonials } from '@/components/testimonials/data/testimonial';
88
import { Skeleton } from '@/components/ui/skeleton';
99
import BlogCardSkeleton from '@/components/landing-page/blog/BlogCardSkeleton';
10+
import BlogHero from '@/components/landing-page/blog/BlogHero';
1011

1112
export const metadata: Metadata = generatePageMetadata('blog');
1213

@@ -64,6 +65,7 @@ function BlogGridLoading() {
6465
const BlogPage = async () => {
6566
return (
6667
<div className='min-h-screen bg-[#030303]'>
68+
<BlogHero />
6769
<Suspense fallback={<BlogGridLoading />}>
6870
<StreamingBlogGridWrapper />
6971
</Suspense>
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
function BlogHero() {
2+
return (
3+
<section className='relative mx-auto flex min-h-[500px] max-w-6xl flex-col justify-center gap-6 overflow-hidden px-5 pb-[50px] md:gap-[52px] md:px-0'>
4+
<main className='flex flex-col items-start justify-between gap-6 md:flex-row md:items-end md:gap-0'>
5+
<h1 className='text-[32px] font-normal text-white md:text-5xl'>
6+
<span className='mb-1 bg-gradient-to-r from-[#3AE6B2] to-[#A7F95080] bg-clip-text text-transparent'>
7+
Insights That Matter
8+
</span>
9+
<br />
10+
Stories From Boundless
11+
</h1>
12+
13+
<main className='w-full md:w-[429px]'>
14+
<p className='text-base font-normal text-white'>
15+
{' '}
16+
News, updates, and thought pieces crafted to keep you ahead in the
17+
Boundless ecosystem.
18+
</p>
19+
</main>
20+
</main>
21+
<main className='bg-primary flex flex-col items-center justify-between rounded-[10px] py-2.5 pr-2.5 pl-6 md:w-[570px] md:flex-row'>
22+
<p className='text-background text-base font-medium'>
23+
Never miss important updates
24+
</p>
25+
<button
26+
type='button'
27+
className='bg-background rounded-[10px] px-6 py-2 text-base font-medium text-white transition hover:opacity-90'
28+
>
29+
Subscribe to Our Newsletter
30+
</button>
31+
</main>
32+
</section>
33+
);
34+
}
35+
36+
export default BlogHero;

0 commit comments

Comments
 (0)