Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ff1c52110b | |||
| b53d2c74f6 | |||
| 9f5354ede4 | |||
| 17fc0827e3 | |||
| 5148667fcf | |||
| 10ae06127c | |||
| dce05b1b89 | |||
| 07f5a76cdf | |||
| 7d7aba7106 |
@@ -1,53 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Heritage Caffe The William", description: "Premium grill room, seafood, Italian classics, signature cocktails and fine wines"};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
|||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||||
import { Sparkles, Heart, ChefHat, Award } from 'lucide-react';
|
import { Sparkles, Heart, ChefHat, Award, Phone, MessageCircle } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -135,14 +135,14 @@ export default function LandingPage() {
|
|||||||
<div id="socialproof" data-section="socialproof">
|
<div id="socialproof" data-section="socialproof">
|
||||||
<SocialProofOne
|
<SocialProofOne
|
||||||
title="Trusted by Connoisseurs"
|
title="Trusted by Connoisseurs"
|
||||||
description="Partnered with the finest food and beverage suppliers across South Africa and internationally"
|
description="Award-winning excellence and industry recognition for fine dining"
|
||||||
tag="Premium Partners"
|
tag="Premium Recognition"
|
||||||
tagIcon={Award}
|
tagIcon={Award}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
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}
|
speed={40}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
|
|||||||
Reference in New Issue
Block a user