9 Commits

Author SHA1 Message Date
0649dacf6f Update src/app/page.tsx 2026-03-16 01:59:54 +00:00
b9bdf6c0a2 Merge version_3 into main
Merge version_3 into main
2026-03-16 01:57:02 +00:00
662dd65039 Remove watermark 2026-03-16 01:56:58 +00:00
3d07dcceb1 Merge version_3 into main
Merge version_3 into main
2026-03-16 01:55:42 +00:00
eac68f9c01 Update src/app/page.tsx 2026-03-16 01:55:38 +00:00
ef5af41db0 Merge version_2 into main
Merge version_2 into main
2026-03-16 01:34:44 +00:00
b39e1bda65 Update src/app/page.tsx 2026-03-16 01:34:40 +00:00
746034e9e1 Merge version_1 into main
Merge version_1 into main
2026-03-16 01:17:23 +00:00
5f82b3a32c Merge version_1 into main
Merge version_1 into main
2026-03-16 01:16:54 +00:00
2 changed files with 8 additions and 9 deletions

View File

@@ -3,7 +3,6 @@ import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Archivo } from "next/font/google"; import { Archivo } from "next/font/google";
@@ -27,7 +26,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${archivo.variable} antialiased`}> <body className={`${archivo.variable} antialiased`}>
<Tag />
{children} {children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{

View File

@@ -124,9 +124,9 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve <TestimonialCardTwelve
testimonials={[ testimonials={[
{ id: "review-1", name: "Alex Chen", imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-executive-work_1098-519.jpg", imageAlt: "Alex Chen" }, { id: "review-1", name: "Arsha Ahmad", imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-executive-work_1098-519.jpg", imageAlt: "Arsha Ahmad" },
{ id: "review-2", name: "Jordan Martinez", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-smiling-blond-handsome-young-man-wearing-casual-plaid-shirt-with-hands-crossed-chest-grey-wall_176420-614.jpg", imageAlt: "Jordan Martinez" }, { id: "review-2", name: "Zhenhui Liu", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-smiling-blond-handsome-young-man-wearing-casual-plaid-shirt-with-hands-crossed-chest-grey-wall_176420-614.jpg", imageAlt: "Zhenhui Liu" },
{ id: "review-3", name: "Sydney Park", imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-handsome-african-student-with-beard-dressed-denim-shirt-smiling-happily-showing-his-white-teeth-having-joyful-contented-look_273609-1853.jpg", imageAlt: "Sydney Park" }, { id: "review-3", name: "Jasmine Choi", imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-handsome-african-student-with-beard-dressed-denim-shirt-smiling-happily-showing-his-white-teeth-having-joyful-contented-look_273609-1853.jpg", imageAlt: "Jasmine Choi" },
{ id: "review-4", name: "Casey Williams", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-beautiful-woman-years-old-wearing-corporate-clothing-looking-happy-stan_1258-116856.jpg", imageAlt: "Casey Williams" } { id: "review-4", name: "Casey Williams", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-beautiful-woman-years-old-wearing-corporate-clothing-looking-happy-stan_1258-116856.jpg", imageAlt: "Casey Williams" }
]} ]}
cardTitle="This place absolutely gets it. The food is insane and the vibe hits different." cardTitle="This place absolutely gets it. The food is insane and the vibe hits different."
@@ -141,7 +141,7 @@ export default function LandingPage() {
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<MetricCardOne <MetricCardOne
title="By The Numbers" title="By The Numbers"
description="Proof that Kawau Kitchen is where the food community gathers." description="Proof that Kawau Kitchen is where the food community gathers—15K+ diners trust us monthly."
metrics={[ metrics={[
{ id: "metric-1", value: "15K+", title: "Monthly Diners", description: "People loving our food every month", icon: Users }, { id: "metric-1", value: "15K+", title: "Monthly Diners", description: "People loving our food every month", icon: Users },
{ id: "metric-2", value: "4.9★", title: "Avg Rating", description: "Across all platforms and reviews", icon: Star }, { id: "metric-2", value: "4.9★", title: "Avg Rating", description: "Across all platforms and reviews", icon: Star },
@@ -168,8 +168,8 @@ export default function LandingPage() {
imageAlt="Restaurant reservation and contact" imageAlt="Restaurant reservation and contact"
mediaAnimation="slide-up" mediaAnimation="slide-up"
mediaPosition="left" mediaPosition="left"
inputPlaceholder="Enter your email" inputPlaceholder="Enter email to reserve"
buttonText="Reserve Table" buttonText="Reserve Now"
termsText="By submitting, you agree to our Terms. We'll send you reservation details and updates." termsText="By submitting, you agree to our Terms. We'll send you reservation details and updates."
ariaLabel="Contact and reservation section" ariaLabel="Contact and reservation section"
/> />
@@ -210,4 +210,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }