From c191b1b23b341d0d29b23cedce2b0698ef0970e5 Mon Sep 17 00:00:00 2001 From: Amishmaqbool Date: Tue, 2 Sep 2025 03:02:28 +0500 Subject: [PATCH 1/2] Ui updates --- src/app/blog/page.tsx | 2 +- src/app/page.tsx | 2 +- src/components/Footer.tsx | 2 +- src/components/Navbar.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 78c6914..d3dcb21 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -45,7 +45,7 @@ export default function BlogPage() { return parseCustomDate(b.date) - parseCustomDate(a.date); }); return ( -
+
diff --git a/src/app/page.tsx b/src/app/page.tsx index cfe2282..0f8bae1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -45,7 +45,7 @@ export default function BlogPage() { return parseCustomDate(b.date) - parseCustomDate(a.date); }); return ( -
+
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 2c6fef9..8ea4fa5 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -9,7 +9,7 @@ export const Footer = () => {
{/* Left side - Logo and Social Links */}
- +
diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index a10edbb..1afca67 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -24,7 +24,7 @@ export const Navigation = () => {
- + From 5a943cd547cafa290f2c97b928417e8b788d92f2 Mon Sep 17 00:00:00 2001 From: Amishmaqbool Date: Tue, 2 Sep 2025 03:16:47 +0500 Subject: [PATCH 2/2] Route updated --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 18cf09b..9f2bf4e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,6 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; -import StaticNavigation from "../components/StaticNavbar"; +import StaticNavigation from "@/components/StaticNavigation"; import Footer from "../components/Footer"; import "./globals.css";