import type { Metadata, Viewport } from "next"; import { SmoothViewTransition } from "@/components/transitions/SmoothViewTransition"; const BASE_URL = process.env.NEXT_PUBLIC_SITE_URL ?? "https://routecommerce.com"; // Structured data for the Indian River Direct storefront. // LocalBusiness + BreadcrumbList for the family farm brand. const indianRiverStructuredData = { "@context": "https://schema.org", "@graph": [ { "@type": "BreadcrumbList", itemListElement: [ { "@type": "ListItem", position: 1, name: "Home", item: BASE_URL }, { "@type": "ListItem", position: 2, name: "Indian River Direct", item: `${BASE_URL}/indian-river-direct` }, ], }, { "@type": "LocalBusiness", "@id": `${BASE_URL}/indian-river-direct/#localbusiness`, name: "Indian River Direct", description: "Fresh peaches and citrus from our Florida groves to truckload sales in your neighborhood. Family-owned since 1985.", url: `${BASE_URL}/indian-river-direct`, image: `${BASE_URL}/og-default.svg`, priceRange: "$$", address: { "@type": "PostalAddress", addressRegion: "FL", addressCountry: "US", }, foundingDate: "1985", }, ], }; export const metadata: Metadata = { title: { default: "Indian River Direct | Peach & Citrus Truckload", template: "%s | Indian River Direct", }, description: "Fresh peaches and citrus from our Florida groves to truckload sales in your neighborhood. Family-owned since 1985. Pre-order now for 2026 season.", keywords: ["peaches", "citrus", "Florida produce", "truckload sales", "fresh fruit", "Indian River", "wholesale peaches"], authors: [{ name: "Indian River Direct" }], creator: "Indian River Direct", publisher: "Indian River Direct", openGraph: { title: "Indian River Direct | Fresh Peaches & Citrus", description: "Fresh peaches and citrus from our Florida groves to truckload sales in your neighborhood. Family-owned since 1985.", url: `${BASE_URL}/indian-river-direct`, siteName: "Indian River Direct", locale: "en_US", type: "website", images: [ { url: "/og-default.svg", width: 1200, height: 630, alt: "Indian River Direct - Fresh Peaches & Citrus", }, ], }, twitter: { card: "summary_large_image", title: "Indian River Direct | Peach & Citrus Truckload", description: "Fresh peaches and citrus from our Florida groves. Family-owned since 1985. Pre-order for 2026 season.", site: "@IndianRiverDirect", creator: "@IndianRiverDirect", images: ["/og-default.svg"], }, alternates: { canonical: `${BASE_URL}/indian-river-direct`, }, robots: { index: true, follow: true, googleBot: { index: true, follow: true, }, }, other: { "application/ld+json": JSON.stringify(indianRiverStructuredData), }, }; export const viewport: Viewport = { width: "device-width", initialScale: 1, maximumScale: 5, }; export default function IndianRiverLayout({ children }: { children: React.ReactNode }) { return (
{/* Glass morphism gradient background */}
{/* Decorative glass orbs */}
{/* Content wrapper — crossfades on navigation. */}
{children}
); }