Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0319c1d84d | |||
| 63bada700e | |||
| 220d0ea3c9 | |||
| 849877a04f | |||
| e73039e52a | |||
| 4e237f2268 | |||
| e911e8f935 |
@@ -1,53 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } 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 Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Chikusa Café | Premium Japanese Coffee Since 1998", description: "Experience warmth and craftsmanship at Chikusa Café. Premium coffee, artisan pastries, and Japanese café tradition since 1998. Reserve your table today.", keywords: "café, Japanese coffee, artisan pastries, premium blend, Tokyo café culture", metadataBase: new URL("https://chikusa-cafe.com"),
|
title: "Chikusa Café", description: "Experience Japanese café tradition since 1998"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://chikusa-cafe.com"
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Chikusa Café | Premium Japanese Coffee Since 1998", description: "Experience warmth and craftsmanship at Chikusa Café. Premium coffee, artisan pastries, and Japanese café tradition.", url: "https://chikusa-cafe.com", siteName: "Chikusa Café", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/high-angle-woman-with-coffee-cup_23-2150244119.jpg", alt: "Chikusa Café signature coffee"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Chikusa Café | Premium Japanese Coffee", description: "Experience warmth and craftsmanship. Premium coffee & pastries since 1998.", images: ["http://img.b2bpic.net/free-photo/high-angle-woman-with-coffee-cup_23-2150244119.jpg"]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
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.variable}>{children}
|
||||||
<body
|
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,29 +7,29 @@ import FeatureBento from "@/components/sections/feature/FeatureBento";
|
|||||||
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
||||||
import ContactText from "@/components/sections/contact/ContactText";
|
import ContactText from "@/components/sections/contact/ContactText";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
import { Coffee, Zap, Leaf, UtensilsCrossed, History } from "lucide-react";
|
import { Coffee, Zap, Leaf, UtensilsCrossed, History, Sparkles } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="hover-bubble"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
contentWidth="compact"
|
contentWidth="compact"
|
||||||
sizing="largeSmallSizeMediumTitles"
|
sizing="largeSmallSizeMediumTitles"
|
||||||
background="aurora"
|
background="none"
|
||||||
cardStyle="gradient-bordered"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="radial-glow"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="radial-glow"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="extrabold"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Menu", id: "menu" },
|
{ name: "Menu", id: "menu" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About Us", id: "about" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact Us", id: "contact" }
|
||||||
]}
|
]}
|
||||||
brandName="CHIKUSA"
|
brandName="CHIKUSA"
|
||||||
button={{ text: "Reserve", href: "contact" }}
|
button={{ text: "Reserve", href: "contact" }}
|
||||||
@@ -46,13 +46,13 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
slides={[
|
slides={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/serene-tea-ceremony-with-flowers-sunlight_23-2152023655.jpg?_wi=1", imageAlt: "Warm café ambiance with traditional Japanese décor"
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AR4k4r3Ay5B7EcoP2spt0ot8NW/uploaded-1772596996002-2w5y2hmh.png?_wi=1", imageAlt: "Chikusa Café logo and ambiance"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-with-coffee-cup_23-2150244119.jpg", imageAlt: "Artisan coffee cup with latte art"
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AR4k4r3Ay5B7EcoP2spt0ot8NW/uploaded-1772596996002-2w5y2hmh.png?_wi=2", imageAlt: "Chikusa Café warmth and hospitality"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cozy-cafe_1098-13854.jpg", imageAlt: "Minimalist café interior with wooden furnishings"
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AR4k4r3Ay5B7EcoP2spt0ot8NW/uploaded-1772597240779-l7d4f690.jpg", imageAlt: "Chikusa Café tranquility and tradition"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
autoplayDelay={4000}
|
autoplayDelay={4000}
|
||||||
@@ -103,11 +103,11 @@ export default function LandingPage() {
|
|||||||
{ value: "26+", title: "Years of Excellence" },
|
{ value: "26+", title: "Years of Excellence" },
|
||||||
{ value: "10K+", title: "Happy Visitors Monthly" }
|
{ value: "10K+", title: "Happy Visitors Monthly" }
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/serene-tea-ceremony-with-flowers-sunlight_23-2152023655.jpg?_wi=2"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AR4k4r3Ay5B7EcoP2spt0ot8NW/uploaded-1772596996002-2w5y2hmh.png?_wi=4"
|
||||||
imageAlt="Cozy Chikusa Café interior with traditional Japanese elements"
|
imageAlt="Cozy Chikusa Café interior with traditional Japanese elements"
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={false}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user