14 Commits

Author SHA1 Message Date
94485e2b2c Update src/app/page.tsx 2026-04-17 06:37:44 +00:00
7f69f2462c Merge version_3 into main
Merge version_3 into main
2026-04-17 06:37:27 +00:00
c6582f2b1e Update theme fonts 2026-04-17 06:37:24 +00:00
e449c89631 Update theme fonts 2026-04-17 06:37:24 +00:00
969a66088b Merge version_3 into main
Merge version_3 into main
2026-04-17 06:37:23 +00:00
ca593240e2 Update theme fonts 2026-04-17 06:37:20 +00:00
f72532fe09 Merge version_3 into main
Merge version_3 into main
2026-04-17 06:37:19 +00:00
3d91ed9bbc Update theme fonts 2026-04-17 06:37:19 +00:00
dcf001740d Update theme fonts 2026-04-17 06:37:16 +00:00
bdc82b62ce Update theme fonts 2026-04-17 06:37:16 +00:00
b52b717dab Merge version_3 into main
Merge version_3 into main
2026-04-17 06:37:11 +00:00
612963993a Update theme colors 2026-04-17 06:37:08 +00:00
34edcfa56d Merge version_2 into main
Merge version_2 into main
2026-04-17 06:34:17 +00:00
93f6663b77 Merge version_1 into main
Merge version_1 into main
2026-04-17 06:31:22 +00:00
3 changed files with 28 additions and 22 deletions

View File

@@ -7,6 +7,9 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Manrope } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -21,8 +24,16 @@ export const metadata: Metadata = {
},
};
const dmSans = DM_Sans({
variable: "--font-dm-sans",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -34,7 +45,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
@@ -47,28 +47,23 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="SAVOUR"
<HeroBillboardRotatedCarousel
title="SAVOUR"
description="Culinary Excellence Redefined. Experience the future of fine dining in Jakarta with award-winning fusion cuisine and AI-powered recommendations."
background={{ variant: "sparkles-gradient" }}
buttons={[
{
text: "Reserve Now", href: "#contact"},
{
text: "Explore Menu", href: "#menu"},
]}
slides={[
{
imageSrc: "http://img.b2bpic.net/free-photo/gourmet-seafood-dish-with-white-wine_84443-82012.jpg", imageAlt: "Culinary Art"},
{
imageSrc: "http://img.b2bpic.net/free-photo/home-interior-decorated-brown-shades_23-2151934914.jpg", imageAlt: "Luxury Interior"},
{
imageSrc: "http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157792.jpg", imageAlt: "Wine Pairing"},
{
imageSrc: "http://img.b2bpic.net/free-photo/top-view-detox-drink-arrangement_23-2148683595.jpg", imageAlt: "Plating Detail"},
{
imageSrc: "http://img.b2bpic.net/free-photo/living-room-with-large-blue-sofa-large-coffee-table-with-large-window-that-says-room-is-decorated-with-large-plant_123827-23873.jpg", imageAlt: "Signature Cocktails"},
{
imageSrc: "http://img.b2bpic.net/free-photo/belgian-waffle-with-vanilla-ice-cream-golden-chocolate_114579-1928.jpg", imageAlt: "Gourmet Dish"},
carouselItems={[
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/gourmet-seafood-dish-with-white-wine_84443-82012.jpg", imageAlt: "Culinary Art" },
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/home-interior-decorated-brown-shades_23-2151934914.jpg", imageAlt: "Luxury Interior" },
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157792.jpg", imageAlt: "Wine Pairing" },
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/top-view-detox-drink-arrangement_23-2148683595.jpg", imageAlt: "Plating Detail" },
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/living-room-with-large-blue-sofa-large-coffee-table-with-large-window-that-says-room-is-decorated-with-large-plant_123827-23873.jpg", imageAlt: "Signature Cocktails" },
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/belgian-waffle-with-vanilla-ice-cream-golden-chocolate_114579-1928.jpg", imageAlt: "Gourmet Dish" },
]}
/>
</div>
@@ -224,4 +219,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}