diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ba03b4..e8b0637 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; +import { DM_Sans } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +const dmSans = DM_Sans({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Al Pan Pan | Authentic Latin Bakery & Restaurant | West Palm Beach", description: "Authentic South American bakery & restaurant in West Palm Beach. Fresh empanadas, chivito sandwiches, pastries, and café con leche. Call (561) 555-0123 to order.", keywords: "Latin bakery West Palm Beach, empanadas West Palm Beach, South American restaurant, Uruguayan food, café con leche, chivito sandwich", metadataBase: new URL("https://alpanpan.com"), - alternates: { - canonical: "https://alpanpan.com"}, - openGraph: { - title: "Al Pan Pan | Authentic Latin Bakery & Restaurant", description: "Fresh empanadas, pastries, and traditional South American dishes made daily. West Palm Beach's favorite neighborhood bakery.", url: "https://alpanpan.com", siteName: "Al Pan Pan", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/flaky-flatbread-slices-small-ornate-tray-wooden_114579-44894.jpg", alt: "Fresh golden empanadas"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Al Pan Pan | Authentic Latin Bakery", description: "Fresh empanadas and pastries made daily. Call (561) 555-0123.", images: ["http://img.b2bpic.net/free-photo/flaky-flatbread-slices-small-ornate-tray-wooden_114579-44894.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Al Pan Pan - Authentic South American Bakery & Café", description: "Fresh empanadas, pastries, coffee, and traditional Latin dishes made daily in West Palm Beach"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -