We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4336a15 commit aa1cdcfCopy full SHA for aa1cdcf
1 file changed
src/app/(home)/page.tsx
@@ -11,6 +11,7 @@ import { NavigationBar } from "@components/navbar/navbar";
11
import { RainbowGlow } from "@components/ui/rainbow-glow";
12
import { SectionNavigation } from "@components/section-navigation";
13
import { getPublishedPosts } from "@lib/content";
14
+import Footer from "@components/layouts/footer";
15
16
// Lazy-load below-the-fold sections to reduce initial bundle size
17
const HomeSkills = dynamic(() => import("./sections/home-skills").then(mod => ({ default: mod.HomeSkills })), {
@@ -154,6 +155,8 @@ export default function Home() {
154
155
<GetInTouchSections />
156
</section>
157
158
+ <Footer />
159
+
160
<RainbowGlow className="opacity-5 top-0 h-96"/>
161
162
<SectionNavigation />
0 commit comments