File tree Expand file tree Collapse file tree
components/landing-page/blog Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import TestimonialSection from '@/components/testimonials/TestimonialsSection';
77import { testimonials } from '@/components/testimonials/data/testimonial' ;
88import { Skeleton } from '@/components/ui/skeleton' ;
99import BlogCardSkeleton from '@/components/landing-page/blog/BlogCardSkeleton' ;
10+ import BlogHero from '@/components/landing-page/blog/BlogHero' ;
1011
1112export const metadata : Metadata = generatePageMetadata ( 'blog' ) ;
1213
@@ -64,6 +65,7 @@ function BlogGridLoading() {
6465const BlogPage = async ( ) => {
6566 return (
6667 < div className = 'min-h-screen bg-[#030303]' >
68+ < BlogHero />
6769 < Suspense fallback = { < BlogGridLoading /> } >
6870 < StreamingBlogGridWrapper />
6971 </ Suspense >
Original file line number Diff line number Diff line change 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 ;
You can’t perform that action at this time.
0 commit comments