diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cfd80bc..1ab13d4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,11 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Figtree } from "next/font/google"; @@ -14,23 +13,15 @@ export const metadata: Metadata = { title: 'Lindenhurst Bagels & Deli | Fresh Bagels & Sandwiches', description: 'Discover Lindenhurst Bagels & Deli. Freshly baked bagels, premium deli sandwiches, and catering. Visit us for breakfast & lunch in Lindenhurst, NY.', openGraph: { - "title": "Lindenhurst Bagels & Deli", - "description": "Fresh Bagels & Deli Sandwiches, Made Daily", - "url": "https://www.lindenhurstbagels.com", - "siteName": "Lindenhurst Bagels & Deli", - "images": [ + "title": "Lindenhurst Bagels & Deli", "description": "Fresh Bagels & Deli Sandwiches, Made Daily", "url": "https://www.lindenhurstbagels.com", "siteName": "Lindenhurst Bagels & Deli", "images": [ { - "url": "http://img.b2bpic.net/free-photo/delicious-food-standing-line_23-2147678785.jpg", - "alt": "A spread of fresh bagels and deli items" + "url": "http://img.b2bpic.net/free-photo/delicious-food-standing-line_23-2147678785.jpg", "alt": "A spread of fresh bagels and deli items" } ], "type": "website" }, twitter: { - "card": "summary_large_image", - "title": "Lindenhurst Bagels & Deli", - "description": "Fresh Bagels & Deli Sandwiches, Made Daily", - "images": [ + "card": "summary_large_image", "title": "Lindenhurst Bagels & Deli", "description": "Fresh Bagels & Deli Sandwiches, Made Daily", "images": [ "http://img.b2bpic.net/free-photo/delicious-food-standing-line_23-2147678785.jpg" ] }, @@ -40,9 +31,12 @@ export const metadata: Metadata = { }, }; -const figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], +}); + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export default function RootLayout({ @@ -53,7 +47,7 @@ export default function RootLayout({ return ( - + {children}