Merge version_2 into main #4
@@ -1,53 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
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"),
|
||||
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"]
|
||||
}
|
||||
};
|
||||
title: "Chikusa Café", description: "Experience Japanese café tradition since 1998"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -7,29 +7,29 @@ import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
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() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="aurora"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="extrabold"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "About Us", id: "about" },
|
||||
{ name: "Contact Us", id: "contact" }
|
||||
]}
|
||||
brandName="CHIKUSA"
|
||||
button={{ text: "Reserve", href: "contact" }}
|
||||
@@ -46,13 +46,13 @@ export default function LandingPage() {
|
||||
]}
|
||||
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", 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", 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-1772596996002-2w5y2hmh.png", imageAlt: "Chikusa Café tranquility and tradition"
|
||||
}
|
||||
]}
|
||||
autoplayDelay={4000}
|
||||
@@ -103,11 +103,11 @@ export default function LandingPage() {
|
||||
{ value: "26+", title: "Years of Excellence" },
|
||||
{ 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"
|
||||
imageAlt="Cozy Chikusa Café interior with traditional Japanese elements"
|
||||
mediaAnimation="blur-reveal"
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
useInvertedBackground={false}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user