From 502a5b4ad23528a59341c23f46cc4cfa32a32529 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:32:08 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 0be300a..d227987 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -5,6 +5,7 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating import MediaAbout from "@/components/sections/about/MediaAbout"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import Link from "next/link"; import { Heart } from "lucide-react"; export default function AboutPage() { @@ -89,7 +90,8 @@ export default function AboutPage() { textboxLayout="default" useInvertedBackground={false} names={[ - "Urban Fashion Week", "Street Culture Magazine", "Fashion Forward Collective", "Independent Style Collective", "Art & Fashion Union", "Creative Movement", "Urban Collective", "Style Rebels"]} + "Urban Fashion Week", "Street Culture Magazine", "Fashion Forward Collective", "Independent Style Collective", "Art & Fashion Union", "Creative Movement", "Urban Collective", "Style Rebels" + ]} speed={50} showCard={true} /> -- 2.49.1 From 958eba89039751d7b423669f34d3d0afbc7f475e Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:32:08 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8db897c..8155ca4 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,6 +5,7 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating import ContactFaq from "@/components/sections/contact/ContactFaq"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import Link from "next/link"; import { MessageCircle } from "lucide-react"; export default function ContactPage() { @@ -72,17 +73,17 @@ export default function ContactPage() { -- 2.49.1 From 87d8d66017d9b632bbe367c0cd8517b1e0da4367 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:32:09 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 1409 +------------------------------------------- 1 file changed, 7 insertions(+), 1402 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 30877e2..4b64aa6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1411 +1,17 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "UNREST - Bold Artistic Urban Fashion", description: "Premium streetwear collection featuring artistic graphic tees, oversized baggy jeans, and bold long sleeves. Shop now.", keywords: "streetwear, urban fashion, graphic tees, baggy jeans, artistic clothing, bold fashion", metadataBase: new URL("https://streetwearco.com"), - alternates: { - canonical: "https://streetwearco.com"}, - openGraph: { - title: "UNREST - Bold Urban Fashion", description: "Discover bold, artistic streetwear designed for the urban collective. Limited edition pieces with premium quality.", url: "https://streetwearco.com", siteName: "UNREST", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-grey-suit-enjoys-wind-street-new-york-city_8353-1582.jpg", alt: "UNREST Featured Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "UNREST - Bold Urban Fashion", description: "Premium streetwear with artistic graphics and bold designs.", images: ["http://img.b2bpic.net/free-photo/woman-grey-suit-enjoys-wind-street-new-york-city_8353-1582.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "UNREST - Bold Streetwear", description: "Bold. Artistic. Unapologetic. Curated streetwear for the urban collective."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -