Add logo image to the public directory

This commit is contained in:
Poyraz Avsever
2026-03-10 09:36:47 +03:00
parent 437080eb35
commit 29a0a8a893
9 changed files with 1690 additions and 5 deletions
+2 -1
View File
@@ -1 +1,2 @@
@import "tailwindcss";
@import "tailwindcss";
@import "poyraz-ui/preset.css";
+6 -3
View File
@@ -1,7 +1,7 @@
import type { Metadata } from "next";
import { SiteNavbar } from "@/components/site-navbar";
import "./globals.css";
export const metadata: Metadata = {
title:
"Poyraz Avsever - Portfolio - Freelancer - Fullstack Developer - Web Developer",
@@ -44,8 +44,11 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body>
{children}
<body className="min-h-dvh bg-background text-foreground antialiased">
<div className="mx-auto flex min-h-dvh w-full max-w-4xl flex-col px-4 py-8 sm:px-6 sm:py-10">
<SiteNavbar />
<main className="flex-1 py-8">{children}</main>
</div>
</body>
</html>
);