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} /> 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() { 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} - -