From 243ab9e073ec63a86e0b23bb16b790cbc7d6fe79 Mon Sep 17 00:00:00 2001 From: PlatyPuspus <23h46.shovin@sjec.ac.in> Date: Sat, 21 Feb 2026 19:16:48 +0530 Subject: [PATCH] Changed the navbar --- app/(pages)/layout.tsx | 16 +++++++++++++++ app/components/Hero.tsx | 41 +++++++++++++++++++++++++++++++++------ app/components/Navbar.tsx | 14 ++++++------- app/globals.css | 12 +++++++++--- app/layout.tsx | 2 +- 5 files changed, 68 insertions(+), 17 deletions(-) create mode 100644 app/(pages)/layout.tsx diff --git a/app/(pages)/layout.tsx b/app/(pages)/layout.tsx new file mode 100644 index 0000000..1250e66 --- /dev/null +++ b/app/(pages)/layout.tsx @@ -0,0 +1,16 @@ +import Navbar from "../components/Navbar"; +import Footer from "../components/Footer"; + +export default function PagesLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + <> + + {children} +