From d6a95f0e38835b3118c80803635a178210ee7d57 Mon Sep 17 00:00:00 2001
From: Citali 
Date: Wed, 29 Oct 2025 11:06:36 +0100
Subject: [PATCH] Change page
---
 src/app/layout.tsx               |   4 +-
 src/app/page.tsx                 | 105 +++++++++++++++----------------
 src/components/global/Banner.tsx |   1 -
 src/components/global/TopNav.tsx |  14 ++---
 src/lib/s3.ts                    |   2 +-
 5 files changed, 62 insertions(+), 64 deletions(-)
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index d4698ca..2983d74 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -42,13 +42,13 @@ export default function RootLayout({
             
               
             
-            
+            
             
               {children}
             
-            
 
         {/* Search */}
-        
+        {/* 
           
             
           
@@ -71,13 +67,16 @@ export default function Home() {
             placeholder="Search artworks, commissions, pages..."
             className="p-6 pl-10"
           />
-        
+        
  */}
       
 
 
       {/* Section Cards */}
       
-        {sections.map((section) => (
+        
+          If you want to commission me you can find all the information you need under following link: Linktree
+        
+        {/* {sections.map((section) => (
           
             
               
@@ -91,7 +90,7 @@ export default function Home() {
               
             
           
-        ))}
+        ))} */}
       
 
     
   );
diff --git a/src/components/global/Banner.tsx b/src/components/global/Banner.tsx
index f4558df..4a90725 100644
--- a/src/components/global/Banner.tsx
+++ b/src/components/global/Banner.tsx
@@ -30,7 +30,6 @@ export default async function Banner() {
             className="object-cover"
             priority
           />
-          {/* Overlay Logo / Title */}
           
             
               {title}
diff --git a/src/components/global/TopNav.tsx b/src/components/global/TopNav.tsx
index 9e40768..b406629 100644
--- a/src/components/global/TopNav.tsx
+++ b/src/components/global/TopNav.tsx
@@ -9,13 +9,13 @@ import { Sheet, SheetContent, SheetHeader, SheetTitle, SheetTrigger } from "../u
 
 const links = [
   { href: "/", label: "Home" },
-  { href: "/portfolio/art", label: "Artworks" },
-  { href: "/portfolio/artfight", label: "Artfight" },
-  { href: "/portfolio/minis", label: "Miniatures" },
-  { href: "/commissions", label: "Commissions" },
-  { href: "/ych", label: "YCH / Custom offers" },
-  { href: "/tos", label: "Terms of Service" },
-  { href: "/todo", label: "todo (temp)" },
+  { href: "/portfolio/art", label: "Portfolio" },
+  // { href: "/portfolio/artfight", label: "Artfight" },
+  // { href: "/portfolio/minis", label: "Miniatures" },
+  // { href: "/commissions", label: "Commissions" },
+  // { href: "/ych", label: "YCH / Custom offers" },
+  // { href: "/tos", label: "Terms of Service" },
+  // { href: "/todo", label: "todo (temp)" },
 ]
 
 export default function TopNav() {
diff --git a/src/lib/s3.ts b/src/lib/s3.ts
index 16f9f91..ac2e4cd 100644
--- a/src/lib/s3.ts
+++ b/src/lib/s3.ts
@@ -13,7 +13,7 @@ export const s3 = new S3Client({
 
 export async function getSignedImageUrl(key: string, expiresInSec = 3600) {
   const command = new GetObjectCommand({
-    Bucket: "gaertan",
+    Bucket: "gaertanapp",
     Key: key,
   });