diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 152c709..affacf6 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,26 +3,23 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import ContactText from "@/components/sections/contact/ContactText"; -import FeatureCardSix from "@/components/sections/feature/FeatureCardSix"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import Link from "next/link"; -import { Mail, MapPin, Phone } from "lucide-react"; export default function ContactPage() { return ( - {/* Navbar */} - {/* Main Contact CTA Section */} -
+
- {/* Contact Methods Section */} -
- -
- - {/* Response Time Section */} -
+
- {/* Footer */} ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5f4a96d..85a8c7c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1430 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Vaulted Soles | Premium Sneakers & Streetwear in Longview", - description: "Shop 100% authentic Jordans, Dunks, Yeezys & exclusive streetwear. Expert curation, friendly service. Hard-to-find heat always in stock. Longview's trusted sneaker vault.", - keywords: "sneaker store Longview, authentic jordans, nike dunks, yeezys, streetwear, sneaker shop, premium shoes", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Vaulted Soles | Premium Sneaker Vault", - description: "Authentic Jordans, Dunks, Yeezys & streetwear. Expert service. Exclusive heat.", - siteName: "Vaulted Soles", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-vector/modern-sale-background-with-product-description_1361-1784.jpg", - alt: "Premium sneaker collection", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Vaulted Soles | Premium Sneaker Vault", - description: "Authentic Jordans, Dunks, Yeezys & exclusive streetwear. Longview's trusted plug.", - images: ["http://img.b2bpic.net/free-vector/modern-sale-background-with-product-description_1361-1784.jpg"], - }, -}; + title: "Vaulted Soles | Premium Sneakers & Streetwear in Longview", description: "Premium sneakers & streetwear curated for sneakerheads. 100% authentic, hard-to-find heat always in stock. Shop Air Jordans, Dunks, Yeezys, and exclusive streetwear in Longview.", keywords: "sneakers, jordans, dunks, yeezys, streetwear, authentic, longview"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -