diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3a1e1b7..09cb169 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -48,7 +48,7 @@ export default function AboutPage() { { value: "25+", title: "Years Serving Waterville" }, { value: "1000s", title: "Happy Memories Created" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/woman-kid-with-ice-creams-side-view_23-2149426708.jpg" + imageSrc="http://img.b2bpic.net/free-photo/woman-kid-with-ice-creams-side-view_23-2149426708.jpg?_wi=2" imageAlt="Family enjoying ice cream together" useInvertedBackground={true} mediaAnimation="blur-reveal" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..c4224b7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Sweet Retreat - Waterville's Favorite Ice Cream Shop", + description: "Enjoy delicious soft serve, sundaes, and ice cream favorites at Sweet Retreat. Visit Waterville's beloved local ice cream parlor for fun summer treats and family memories.", + keywords: "ice cream, soft serve, sundaes, desserts, Waterville, local business, family friendly", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Sweet Retreat - Waterville's Favorite Ice Cream Shop", + description: "Your favorite local ice cream parlor with soft serve, sundaes, and classic treats.", + type: "website", + siteName: "Sweet Retreat", + images: [ + { + url: "http://img.b2bpic.net/free-photo/appetizing-ice-cream-cone-female-hands_169016-43900.jpg", + alt: "Sweet Retreat ice cream cone with swirls and sprinkles", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Sweet Retreat - Waterville's Favorite Ice Cream Shop", + description: "Delicious ice cream, friendly staff, and family memories since 1999.", + images: ["http://img.b2bpic.net/free-photo/appetizing-ice-cream-cone-female-hands_169016-43900.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}