diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index be19fb6..4166eba 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -91,7 +91,7 @@ export default function AboutPage() { tag="🍔 Since Day One" tagIcon={Award} tagAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865325.jpg" + imageSrc="http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865325.jpg?_wi=1" imageAlt="restaurant team staff smiling together" ariaLabel="About page hero section" containerClassName="max-w-7xl mx-auto px-4" @@ -129,25 +129,25 @@ export default function AboutPage() { { id: "member-1", name: "Thabo Mthembu", - imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865325.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865325.jpg?_wi=2", imageAlt: "Thabo Mthembu, Founder & Head Chef", }, { id: "member-2", name: "Lisa van der Merwe", - imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865325.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865325.jpg?_wi=3", imageAlt: "Lisa van der Merwe, Bakery Director", }, { id: "member-3", name: "Kunle Okafor", - imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865325.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865325.jpg?_wi=4", imageAlt: "Kunle Okafor, Operations Manager", }, { id: "member-4", name: "Emma Johnson", - imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865325.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865325.jpg?_wi=5", imageAlt: "Emma Johnson, Customer Experience Lead", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..303e512 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,54 @@ 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: "Smash Burger Bar & Bakery | Bloemfontein", + description: "Best smash burgers in Bloemfontein. Fresh ingredients, bold flavors, artisanal bakery. Order online or visit us today!", + keywords: "smash burgers, Bloemfontein restaurants, burger bar, loaded fries, bakery, fast casual dining, South Africa", + metadataBase: new URL("https://smashburgerbar.co.za"), + alternates: { + canonical: "https://smashburgerbar.co.za", + }, + robots: { + index: true, + follow: true, + }, + openGraph: { + type: "website", + url: "https://smashburgerbar.co.za", + title: "Smash Burger Bar & Bakery | Best Burgers in Bloemfontein", + description: "Crispy edges, juicy centers. Fresh smash burgers, loaded fries, and artisanal bakery items.", + siteName: "Smash Burger Bar & Bakery", + }, + twitter: { + card: "summary_large_image", + title: "Smash Burger Bar & Bakery", + description: "Best smash burgers in Bloemfontein. Fresh, bold, delicious.", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +57,9 @@ export default function RootLayout({ return ( - + {children}