diff --git a/src/app/brands/page.tsx b/src/app/brands/page.tsx index 249c220..7cb0004 100644 --- a/src/app/brands/page.tsx +++ b/src/app/brands/page.tsx @@ -97,21 +97,21 @@ export default function BrandsPage() { id: "product-daiwa", name: "Daiwa Tatula Type-R Baitcaster", price: "★★★★★ (847 votes)", - imageSrc: "http://img.b2bpic.net/free-photo/man-gaming-with-headphones-better-immerse-himself_482257-124713.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-gaming-with-headphones-better-immerse-himself_482257-124713.jpg?_wi=4", imageAlt: "Daiwa Tatula Type-R baitcasting reel", }, { id: "product-shimano", name: "Shimano Sienna Spinning Reel", price: "★★★★☆ (612 votes)", - imageSrc: "http://img.b2bpic.net/free-photo/orange-fishing-lure-with-fishing-float-corkboard_23-2148189226.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/orange-fishing-lure-with-fishing-float-corkboard_23-2148189226.jpg?_wi=3", imageAlt: "Shimano Sienna spinning reel", }, { id: "product-abu", name: "Abu Garcia Revo SX Casting Reel", price: "★★★★★ (734 votes)", - imageSrc: "http://img.b2bpic.net/free-photo/man-gaming-with-headphones-better-immerse-himself_482257-124713.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-gaming-with-headphones-better-immerse-himself_482257-124713.jpg?_wi=5", imageAlt: "Abu Garcia Revo SX casting reel", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..21d156a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,54 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Montserrat } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Montserrat } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Reel Reviews - Honest Fishing Gear Reviews", + description: "Community-driven platform for rating fishing gear from Daiwa, Shimano, Abu Garcia. Vote based on quality, performance, and value.", + keywords: "fishing gear reviews, reel reviews, fishing equipment ratings, Daiwa, Shimano, Abu Garcia, fishing tackle", + metadataBase: new URL("https://reelreviews.io"), + alternates: { + canonical: "https://reelreviews.io", + }, + openGraph: { + title: "Reel Reviews - Honest Fishing Gear Reviews", + description: "Community-driven platform for rating fishing gear from Daiwa, Shimano, Abu Garcia. Vote based on quality, performance, and value.", + url: "https://reelreviews.io", + siteName: "Reel Reviews", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Reel Reviews - Honest Fishing Gear Reviews", + description: "Rate and review fishing equipment with our community-driven platform", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +57,9 @@ export default function RootLayout({ return ( - + {children}