From a6128df6ac5670e3182fb4ceeb0a065a360fed37 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:28:35 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b225958..ffef97e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,6 @@ import type { Metadata } from "next"; import { Libre_Baskerville, Inter } from "next/font/google"; +import { Halant } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; @@ -13,6 +14,11 @@ const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +const halant = Halant({ + variable: "--font-halant", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + export const metadata: Metadata = { title: "Premium Graphic T-Shirts | Your Logo", description: "Discover premium graphic tees for modern lifestyle. Shop bold streetwear designs with exceptional quality and unique artistic prints.", keywords: "graphic t-shirts, streetwear, fashion, premium tees, modern style, artistic prints", metadataBase: new URL("https://yourlogo.com"), alternates: { @@ -20,11 +26,11 @@ export const metadata: Metadata = { openGraph: { title: "Premium Graphic T-Shirts | Your Logo", description: "Discover premium graphic tees for modern lifestyle. Shop bold streetwear designs with exceptional quality.", url: "https://yourlogo.com", siteName: "Your Logo", type: "website", images: [ { - url: "http://img.b2bpic.net/free-photo/young-man-picking-taxi-city_23-2148289262.jpg", alt: "Premium graphic t-shirt showcase"}, + url: "http://img.b2bpic.net/free-photo/medium-shot-happy-man-holding-glasses_23-2149004834.jpg", alt: "Premium graphic t-shirt showcase"}, ], }, twitter: { - card: "summary_large_image", title: "Premium Graphic T-Shirts | Your Logo", description: "Discover premium graphic tees for modern lifestyle", images: ["http://img.b2bpic.net/free-photo/young-man-picking-taxi-city_23-2148289262.jpg"], + card: "summary_large_image", title: "Premium Graphic T-Shirts | Your Logo", description: "Discover premium graphic tees for modern lifestyle", images: ["http://img.b2bpic.net/free-photo/medium-shot-happy-man-holding-glasses_23-2149004834.jpg"], }, robots: { index: true, @@ -41,7 +47,7 @@ export default function RootLayout({ {children} -- 2.49.1 From a4ea931b29a9e3bc4e8db031d17689b41f3934d8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:28:35 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 108 +++++++++++++++++++++++------------------------ 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 044859d..ebd5dea 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import TestimonialCardThirteen from "@/components/sections/testimonial/Testimoni import BlogCardOne from "@/components/sections/blog/BlogCardOne"; import FooterCard from "@/components/sections/footer/FooterCard"; import Link from "next/link"; -import { Sparkles, Zap, TrendingUp, Star, Heart, Camera, Instagram, Twitter, Facebook } from "lucide-react"; +import { Sparkles, Zap, TrendingUp, Star, Heart, Camera, Instagram, Twitter, Facebook, Pinterest } from "lucide-react"; export default function HomePage() { return ( @@ -25,6 +25,7 @@ export default function HomePage() { secondaryButtonStyle="radial-glow" headingFontWeight="semibold" > + {/* Navbar */} + {/* Hero Section */}
+ {/* Category Section */}
+ {/* Featured Products Section */}
+ {/* Social Proof Section */}
+ {/* Testimonials Section */}
+ {/* Instagram Gallery Section */} + {/* Footer */} -- 2.49.1