diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5bc79cd..6a6e582 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -22,25 +22,29 @@ const dmSans = DM_Sans({ export const metadata: Metadata = { title: "Texas Brims | Premium Handcrafted Hats", description: "Discover authentic, handcrafted hats with 25+ years of expertise. Premium quality cowboy hats and western wear inspired by true Texan heritage.", keywords: "cowboy hats, western hats, premium hats, handcrafted hats, stetson, texas hats, authentic western wear", metadataBase: new URL("https://www.texasbrims.com"), alternates: { - canonical: "https://www.texasbrims.com"}, + canonical: "https://www.texasbrims.com" + }, openGraph: { title: "Texas Brims | Premium Handcrafted Hats", description: "Discover authentic, handcrafted hats with 25+ years of expertise. Premium quality cowboy hats and western wear inspired by true Texan heritage.", url: "https://www.texasbrims.com", siteName: "Texas Brims", images: [ { - url: "http://img.b2bpic.net/free-photo/elegant-long-haired-woman-stylish-hat-looks-while-walking-beautiful-exotic-park-close-up-portrait-pretty-young-woman-trendy-earrings-shirt-posing-with-enigmatic-face-expression_197531-2900.jpg", alt: "Texas Brims Premium Hat Collection"}, + url: "http://img.b2bpic.net/free-photo/elegant-long-haired-woman-stylish-hat-looks-while-walking-beautiful-exotic-park-close-up-portrait-pretty-young-woman-trendy-earrings-shirt-posing-with-enigmatic-face-expression_197531-2900.jpg", alt: "Texas Brims Premium Hat Collection" + } ], - type: "website"}, + type: "website" + }, twitter: { card: "summary_large_image", title: "Texas Brims | Premium Handcrafted Hats", description: "Discover authentic, handcrafted hats with 25+ years of expertise. Premium quality cowboy hats and western wear inspired by true Texan heritage.", images: [ - "http://img.b2bpic.net/free-photo/elegant-long-haired-woman-stylish-hat-looks-while-walking-beautiful-exotic-park-close-up-portrait-pretty-young-woman-trendy-earrings-shirt-posing-with-enigmatic-face-expression_197531-2900.jpg"], + "http://img.b2bpic.net/free-photo/elegant-long-haired-woman-stylish-hat-looks-while-walking-beautiful-exotic-park-close-up-portrait-pretty-young-woman-trendy-earrings-shirt-posing-with-enigmatic-face-expression_197531-2900.jpg" + ] }, robots: { index: true, - follow: true, - }, + follow: true + } }; export default function RootLayout({ - children, + children }: Readonly<{ children: React.ReactNode; }>) { diff --git a/src/app/page.tsx b/src/app/page.tsx index a692c4a..d6d5130 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,6 @@ import TextAbout from '@/components/sections/about/TextAbout'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; -import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import { Sparkles, BookOpen, Users, Award, Globe, Heart } from "lucide-react"; @@ -33,7 +32,6 @@ export default function LandingPage() { { name: "Shop", id: "products" }, { name: "About", id: "about" }, { name: "Features", id: "features" }, - { name: "Reviews", id: "testimonials" }, { name: "Contact", id: "contact" } ]} button={{ text: "Shop Now", href: "products" }} @@ -139,23 +137,6 @@ export default function LandingPage() { /> -