5 Commits

Author SHA1 Message Date
fbd8bbd941 Update src/app/page.tsx 2026-03-04 12:12:39 +00:00
ff83a94c6a Update src/app/layout.tsx 2026-03-04 12:12:38 +00:00
bd93537bf9 Merge version_1 into main
Merge version_1 into main
2026-03-04 12:10:56 +00:00
c84fef8470 Merge version_1 into main
Merge version_1 into main
2026-03-04 12:08:27 +00:00
03e138bd4f Merge version_1 into main
Merge version_1 into main
2026-03-04 12:06:32 +00:00
2 changed files with 39 additions and 61 deletions

View File

@@ -1,57 +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 { Figtree } from "next/font/google";
import "./globals.css"; import "./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"],
});
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "KFC Carrum Downs - Crispy Fried Chicken", description: "Experience delicious, crispy fried chicken at KFC Carrum Downs. Order online or visit us today for the best chicken in town.", keywords: "KFC Carrum Downs, fried chicken, fast food, chicken restaurant, takeaway, delivery", metadataBase: new URL("https://kfc-carrum-downs.com"), title: "KFC Carrum Downs", description: "Experience the iconic taste of KFC's crispy, delicious fried chicken in Carrum Downs."};
alternates: {
canonical: "https://kfc-carrum-downs.com"},
openGraph: {
title: "KFC Carrum Downs", description: "Finger Lickin' Good Chicken - Visit us in Carrum Downs for the best fried chicken experience", url: "https://kfc-carrum-downs.com", siteName: "KFC Carrum Downs", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/closeup-shot-tasty-looking-dish-with-fried-chicken-fries-isolated-black-background_181624-56189.jpg", alt: "KFC Crispy Fried Chicken"},
],
},
twitter: {
card: "summary_large_image", title: "KFC Carrum Downs", description: "Crispy, delicious fried chicken in Carrum Downs", images: ["http://img.b2bpic.net/free-photo/closeup-shot-tasty-looking-dish-with-fried-chicken-fries-isolated-black-background_181624-56189.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} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -47,19 +47,24 @@ export default function LandingPage() {
background={{ variant: "plain" }} background={{ variant: "plain" }}
mediaItems={[ mediaItems={[
{ {
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-tasty-looking-dish-with-fried-chicken-fries-isolated-black-background_181624-56189.jpg?_wi=1", imageAlt: "KFC Crispy Fried Chicken"}, imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-tasty-looking-dish-with-fried-chicken-fries-isolated-black-background_181624-56189.jpg?_wi=1", imageAlt: "KFC Crispy Fried Chicken"
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/breaded-chicken-legs-served-with-sauces_140725-5736.jpg?_wi=1", imageAlt: "Original Recipe Bucket"}, imageSrc: "http://img.b2bpic.net/free-photo/breaded-chicken-legs-served-with-sauces_140725-5736.jpg?_wi=1", imageAlt: "Original Recipe Bucket"
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-american-food-with-copy-space_23-2148454886.jpg?_wi=1", imageAlt: "Hot and Spicy Chicken"}, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-american-food-with-copy-space_23-2148454886.jpg?_wi=1", imageAlt: "Hot and Spicy Chicken"
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-fried-chicken-nuggets-with-variety-sauces_23-2148646580.jpg?_wi=1", imageAlt: "Popcorn Chicken"}, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-fried-chicken-nuggets-with-variety-sauces_23-2148646580.jpg?_wi=1", imageAlt: "Popcorn Chicken"
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-tasty-looking-dish-with-fried-chicken-fries-isolated-black-background_181624-56189.jpg?_wi=2", imageAlt: "Fresh Crispy Chicken"}, imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-tasty-looking-dish-with-fried-chicken-fries-isolated-black-background_181624-56189.jpg?_wi=2", imageAlt: "Fresh Crispy Chicken"
},
]} ]}
buttons={[ buttons={[
{ text: "View Our Menu", href: "products" }, { text: "View Our Menu", href: "products" },
{ text: "Order Online", href: "contact" }, { text: "Order Now", href: "contact" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
ariaLabel="KFC Carrum Downs Hero Section" ariaLabel="KFC Carrum Downs Hero Section"
@@ -79,11 +84,14 @@ export default function LandingPage() {
carouselMode="buttons" carouselMode="buttons"
products={[ products={[
{ {
id: "1", name: "Original Recipe Bucket", price: "$24.99", imageSrc: "http://img.b2bpic.net/free-photo/breaded-chicken-legs-served-with-sauces_140725-5736.jpg?_wi=2", imageAlt: "Original Recipe Bucket"}, id: "1", name: "Original Recipe Bucket", price: "$24.99", imageSrc: "http://img.b2bpic.net/free-photo/breaded-chicken-legs-served-with-sauces_140725-5736.jpg?_wi=2", imageAlt: "Original Recipe Bucket"
},
{ {
id: "2", name: "Hot and Spicy Wings", price: "$18.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-american-food-with-copy-space_23-2148454886.jpg?_wi=2", imageAlt: "Hot and Spicy Chicken"}, id: "2", name: "Hot and Spicy Wings", price: "$18.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-american-food-with-copy-space_23-2148454886.jpg?_wi=2", imageAlt: "Hot and Spicy Chicken"
},
{ {
id: "3", name: "Popcorn Chicken Box", price: "$12.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-fried-chicken-nuggets-with-variety-sauces_23-2148646580.jpg?_wi=2", imageAlt: "Popcorn Chicken Box"}, id: "3", name: "Popcorn Chicken Box", price: "$12.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-fried-chicken-nuggets-with-variety-sauces_23-2148646580.jpg?_wi=2", imageAlt: "Popcorn Chicken Box"
},
]} ]}
buttons={[{ text: "View Full Menu", href: "contact" }]} buttons={[{ text: "View Full Menu", href: "contact" }]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
@@ -137,22 +145,28 @@ export default function LandingPage() {
testimonials={[ testimonials={[
{ {
id: "1", name: "Sarah Mitchell", role: "Regular Customer", company: "Local Family", rating: 5, id: "1", name: "Sarah Mitchell", role: "Regular Customer", company: "Local Family", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=1", imageAlt: "Sarah Mitchell"}, imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=1", imageAlt: "Sarah Mitchell"
},
{ {
id: "2", name: "John Anderson", role: "Food Enthusiast", company: "Carrum Downs Resident", rating: 5, id: "2", name: "John Anderson", role: "Food Enthusiast", company: "Carrum Downs Resident", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=2", imageAlt: "John Anderson"}, imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=2", imageAlt: "John Anderson"
},
{ {
id: "3", name: "Emma Thompson", role: "Office Manager", company: "Corporate Orders", rating: 5, id: "3", name: "Emma Thompson", role: "Office Manager", company: "Corporate Orders", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg", imageAlt: "Emma Thompson"}, imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg", imageAlt: "Emma Thompson"
},
{ {
id: "4", name: "Michael Davies", role: "Event Organizer", company: "Party Catering", rating: 5, id: "4", name: "Michael Davies", role: "Event Organizer", company: "Party Catering", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=3", imageAlt: "Michael Davies"}, imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=3", imageAlt: "Michael Davies"
},
{ {
id: "5", name: "Lisa Chen", role: "Home Chef", company: "Cooking Enthusiast", rating: 5, id: "5", name: "Lisa Chen", role: "Home Chef", company: "Cooking Enthusiast", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", imageAlt: "Lisa Chen"}, imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", imageAlt: "Lisa Chen"
},
{ {
id: "6", name: "Robert Wilson", role: "Community Member", company: "Local Hero", rating: 5, id: "6", name: "Robert Wilson", role: "Community Member", company: "Local Hero", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=4", imageAlt: "Robert Wilson"}, imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=4", imageAlt: "Robert Wilson"
},
]} ]}
buttons={[{ text: "Share Your Review", href: "contact" }]} buttons={[{ text: "Share Your Review", href: "contact" }]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
@@ -178,9 +192,11 @@ export default function LandingPage() {
<FooterLogoReveal <FooterLogoReveal
logoText="KFC Carrum Downs" logoText="KFC Carrum Downs"
leftLink={{ leftLink={{
text: "Hours: Mon-Sun 10am-10pm", href: "#"}} text: "Hours: Mon-Sun 10am-10pm", href: "#"
}}
rightLink={{ rightLink={{
text: "Carrum Downs, VIC 3201", href: "#"}} text: "Carrum Downs, VIC 3201", href: "#"
}}
ariaLabel="Site footer" ariaLabel="Site footer"
/> />
</div> </div>