From f8368e2e218323841bfff9722a0614e9a4935809 Mon Sep 17 00:00:00 2001 From: Sophia Chang Date: Sat, 26 Jul 2025 15:36:43 -0700 Subject: [PATCH 1/3] added footer to pages --- app/layout.tsx | 2 + components/layout/Footer.tsx | 47 ++++- package-lock.json | 363 +++++++++++++++++++---------------- package.json | 2 +- 4 files changed, 246 insertions(+), 168 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 7052efc..a40ee4f 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -2,6 +2,7 @@ import ClickSpark from "@/components/layout/ClickSpark"; import { MotionConfig, MotionConfigContext } from "motion/react"; import type { Metadata } from "next"; import localFont from "next/font/local"; +import Footer from "@/components/layout/Footer"; import Navbar from "../components/layout/Navbar"; import "./globals.css"; @@ -40,6 +41,7 @@ export default function RootLayout({ {children} +