From 4934f6e3ca29de73c9327a96d494d775f62b7bb2 Mon Sep 17 00:00:00 2001 From: sweetpea22 Date: Wed, 31 Jan 2024 10:29:02 -0500 Subject: [PATCH 1/3] Fix link --- src/pages/index.tsx | 10 ++++++++++ src/sections/BlogTeaser/index.tsx | 7 ++++--- src/sections/Hero/index.tsx | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 1fac044..bacbd64 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -11,8 +11,16 @@ import DevFeature2 from "@/sections/DevFeature2"; import DevJourney from "@/sections/DevJourney"; import SlidingWords from "@/sections/SlidingWords"; import CoreFeatures from "@/sections/CoreFeatures"; +import ProductOverview from "@/sections/ProductOverview"; +import BlogTeaser from "@/sections/BlogTeaser"; +import { getAllPosts } from "@/ghost-client"; +// import { use } from 'react'; export default function Home(props: any) { + const posts = getAllPosts(); + + console.log(posts); + return ( <> @@ -94,12 +102,14 @@ export default function Home(props: any) { +