Skip to content

Commit aa1cdcf

Browse files
committed
feat: add Footer component to the home page
1 parent 4336a15 commit aa1cdcf

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/app/(home)/page.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { NavigationBar } from "@components/navbar/navbar";
1111
import { RainbowGlow } from "@components/ui/rainbow-glow";
1212
import { SectionNavigation } from "@components/section-navigation";
1313
import { getPublishedPosts } from "@lib/content";
14+
import Footer from "@components/layouts/footer";
1415

1516
// Lazy-load below-the-fold sections to reduce initial bundle size
1617
const HomeSkills = dynamic(() => import("./sections/home-skills").then(mod => ({ default: mod.HomeSkills })), {
@@ -154,6 +155,8 @@ export default function Home() {
154155
<GetInTouchSections />
155156
</section>
156157

158+
<Footer />
159+
157160
<RainbowGlow className="opacity-5 top-0 h-96"/>
158161

159162
<SectionNavigation />

0 commit comments

Comments
 (0)