6 Commits

Author SHA1 Message Date
17fc0827e3 Update src/app/page.tsx 2026-03-04 12:09:33 +00:00
5148667fcf Update src/app/layout.tsx 2026-03-04 12:09:32 +00:00
10ae06127c Merge version_1 into main
Merge version_1 into main
2026-03-04 12:08:15 +00:00
dce05b1b89 Merge version_1 into main
Merge version_1 into main
2026-03-04 12:06:29 +00:00
07f5a76cdf Merge version_1 into main
Merge version_1 into main
2026-03-04 12:04:15 +00:00
7d7aba7106 Merge version_1 into main
Merge version_1 into main
2026-03-04 12:02:49 +00:00
2 changed files with 12 additions and 46 deletions

View File

@@ -1,53 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Heritage Caffe The William | Premium Restaurant South Africa", description: "Discover Heritage Caffe The William - an upscale African-Italian restaurant featuring 28-day aged steaks, fresh seafood, authentic Italian cuisine, and an extensive wine selection in South Africa.", keywords: "South African restaurant, grill room, Italian restaurant, wine bar, steakhouse, seafood, family restaurant, fine dining, premium cuisine, South Africa", metadataBase: new URL("https://heritagecaffethewhiham.com"),
alternates: {
canonical: "https://heritagecaffethewhiham.com"},
openGraph: {
title: "Heritage Caffe The William | Premium Dining", description: "Experience African-Italian heritage dining with premium steaks, seafood, Italian classics, and fine wines.", url: "https://heritagecaffethewhiham.com", siteName: "Heritage Caffe The William", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3426.jpg", alt: "Heritage Caffe The William elegant dining experience"},
],
},
twitter: {
card: "summary_large_image", title: "Heritage Caffe The William | Premium Restaurant", description: "Premium African-Italian dining with 28-day aged steaks and extensive wine selection.", images: [
"http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3426.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Heritage Caffe The William", description: "Premium grill room, seafood, Italian classics, signature cocktails and fine wines"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -135,14 +135,14 @@ export default function LandingPage() {
<div id="socialproof" data-section="socialproof">
<SocialProofOne
title="Trusted by Connoisseurs"
description="Partnered with the finest food and beverage suppliers across South Africa and internationally"
tag="Premium Partners"
description="Award-winning excellence and industry recognition for fine dining"
tag="Premium Recognition"
tagIcon={Award}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
names={[
"Groot Constantia", "Spice Route Pinotage", "Delaire Graff", "Pongracz Champagne", "Premium Local Suppliers", "Hennessy Cognac", "Macallan Whisky"
"Best Grill Room 2024", "Michelin Recommended", "Wine Spectator Award", "Fine Dining Excellence Award", "Best Steakhouse South Africa 2024", "Premium Wine Collection Award", "Restaurant of the Year"
]}
speed={40}
showCard={true}
@@ -242,4 +242,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}