diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ebe9ac0..d4ca59b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,35 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { ReactLenis } from "@/lib/lenis"; +import { Manrope } 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"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], + weight: ["200", "300", "400", "500", "600", "700", "800"], }); export const metadata: Metadata = { - title: "Sugarfire Smokehouse | Authentic St. Louis BBQ", description: "Award-winning authentic BBQ in St. Louis. Smoked brisket, pulled pork, ribs & legendary sides. Order online or book catering. 4.7★ rating.", keywords: "St. Louis BBQ, smoked brisket, pulled pork, barbecue restaurant, BBQ catering, authentic smokehouse", metadataBase: new URL("https://sugarfiresmokehouse.com"), - alternates: { - canonical: "https://sugarfiresmokehouse.com"}, - openGraph: { - title: "Sugarfire Smokehouse | Real Smoke. Real Flavor.", description: "Authentic St. Louis BBQ smoked low and slow. Tender brisket, legendary pork, and sides people drive miles for.", url: "https://sugarfiresmokehouse.com", siteName: "Sugarfire Smokehouse", images: [ - { - url: "http://img.b2bpic.net/free-photo/chef-cutting-into-pieces-grilled-lamb-steak_140725-10720.jpg", alt: "smoked brisket closeup texture smoke"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Sugarfire Smokehouse | St. Louis BBQ Legend", description: "Real smoke. Real flavor. No shortcuts. Authentic BBQ smoked low and slow.", images: ["http://img.b2bpic.net/free-photo/chef-cutting-into-pieces-grilled-lamb-steak_140725-10720.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Sugarfire Smokehouse | St. Louis BBQ Legend", description: + "Authentic St. Louis BBQ smoked low and slow. Legendary brisket, pulled pork, and ribs. Visit Sugarfire for real smoke and real flavor."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + + + + {children} + +