diff --git a/src/components/sections/blog/BlogSection.tsx b/src/components/sections/blog/BlogSection.tsx new file mode 100644 index 0000000..aa5a363 --- /dev/null +++ b/src/components/sections/blog/BlogSection.tsx @@ -0,0 +1,49 @@ +"use client"; + +import BlogSimpleCards from '@/components/sections/blog/BlogSimpleCards'; + +export default function BlogSection() { + return ( + + ); +} \ No newline at end of file diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 952bed2..b82f4f9 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -8,6 +8,7 @@ import ProductVariantCards from '@/components/sections/product/ProductVariantCar import InfoCardMarquee from '@/components/ui/InfoCardMarquee'; import TeamSection from '@/components/sections/team/TeamSection'; import StatsSection from '@/components/sections/other/StatsSection'; +import { BlogSection } from '@/components/sections/blog/BlogSection'; export default function HomePage() { return ( @@ -300,6 +301,10 @@ export default function HomePage() {
+ +
+ +
); } \ No newline at end of file