diff --git a/app/(landing)/blog/page.tsx b/app/(landing)/blog/page.tsx index 5b3ec2dee..6cfa102ff 100644 --- a/app/(landing)/blog/page.tsx +++ b/app/(landing)/blog/page.tsx @@ -7,6 +7,7 @@ import TestimonialSection from '@/components/testimonials/TestimonialsSection'; import { testimonials } from '@/components/testimonials/data/testimonial'; import { Skeleton } from '@/components/ui/skeleton'; import BlogCardSkeleton from '@/components/landing-page/blog/BlogCardSkeleton'; +import BlogHero from '@/components/landing-page/blog/BlogHero'; export const metadata: Metadata = generatePageMetadata('blog'); @@ -65,6 +66,7 @@ function BlogGridLoading() { const BlogPage = async () => { return (
+ }> diff --git a/components/landing-page/blog/BlogHero.tsx b/components/landing-page/blog/BlogHero.tsx new file mode 100644 index 000000000..3c9c78a1d --- /dev/null +++ b/components/landing-page/blog/BlogHero.tsx @@ -0,0 +1,36 @@ +function BlogHero() { + return ( +
+
+

+ + Insights That Matter + +
+ Stories From Boundless +

+ +
+

+ {' '} + News, updates, and thought pieces crafted to keep you ahead in the + Boundless ecosystem. +

+
+
+
+

+ Never miss important updates +

+ +
+
+ ); +} + +export default BlogHero;