Merge version_2 into main #7

Merged
bender merged 2 commits from version_2 into main 2026-03-08 21:33:16 +00:00
2 changed files with 10 additions and 20 deletions

View File

@@ -1,8 +1,6 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./styles/globals.css";
import { ServiceWrapper } from "@/providers/service/ServiceWrapper";
import { Tag } from "@/components/common/Tag";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
@@ -31,10 +29,7 @@ export default function RootLayout({
/>
</head>
<body className={`${inter.variable}`}>
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
{children}
<script
dangerouslySetInnerHTML={{

View File

@@ -44,15 +44,10 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitKpi
kpiLeft={[
kpis={[
{
value: "Premium", label: "Lounge"
},
{
value: "Affordable", label: "Drinks"
}
]}
kpiRight={[
{
value: "Delicious", label: "Food"
},
@@ -60,15 +55,15 @@ export default function LandingPage() {
value: "Unforgettable", label: "Vibes"
}
]}
centeredContent={{
title: "Classroom Cafe & Bar", subtitle: "Where Good Food Meets Great Nights", buttons: [
{ text: "Reserve Your Table", href: "#reservation" },
{ text: "View Menu", href: "#dishes" }
]
}}
title="Classroom Cafe & Bar"
description="Where Good Food Meets Great Nights"
background={{ variant: "plain" }}
useInvertedBackground={true}
animationType="slide-up"
enableKpiAnimation={true}
buttons={[
{ text: "Reserve Your Table", href: "#reservation" },
{ text: "View Menu", href: "#dishes" }
]}
mediaAnimation="slide-up"
/>
</div>