diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..7a73a41 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,2 @@ +{ +} \ No newline at end of file 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"; diff --git a/src/app/page.tsx b/src/app/page.tsx index 65bc1ef..f6a235b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -44,7 +44,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/StaticNavbar.tsx b/src/components/StaticNavigation.tsx similarity index 95% rename from src/components/StaticNavbar.tsx rename to src/components/StaticNavigation.tsx index d69642d..ea101dc 100644 --- a/src/components/StaticNavbar.tsx +++ b/src/components/StaticNavigation.tsx @@ -7,7 +7,7 @@ export const StaticNavigation = () => {
- + diff --git a/tsconfig.json b/tsconfig.json index c133409..9bb32ec 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,11 @@ { "compilerOptions": { "target": "ES2017", - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "skipLibCheck": true, "strict": true, @@ -19,9 +23,19 @@ } ], "paths": { - "@/*": ["./src/*"] + "@/*": [ + "./src/*" + ] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] + "include": [ + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts", + "next-env.d.ts", + "build/types/**/*.ts" + ], + "exclude": [ + "node_modules" + ] }