Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 15:13:36 +00:00
2 changed files with 28 additions and 61 deletions

View File

@@ -1,67 +1,28 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Haven Cafe - Coffee, Boba & Fresh Bites in Lynnwood",
description: "Discover Haven Cafe in Lynnwood, WA. Specialty coffee, boba drinks, and fresh bites in a cozy, welcoming space perfect for studying or hanging out.",
keywords: "cafe Lynnwood, coffee shop, boba tea, specialty drinks, lunch, pastries",
metadataBase: new URL("https://havencafe.local"),
alternates: {
canonical: "https://havencafe.local",
},
openGraph: {
title: "Haven Cafe - Coffee, Boba & Fresh Bites",
description: "Your cozy haven for premium coffee, specialty drinks, and fresh bites in Lynnwood, WA.",
url: "https://havencafe.local",
siteName: "Haven Cafe",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/confident-young-indian-man-black-shirt-standing-cafe_627829-5462.jpg",
alt: "Haven Cafe interior",
},
],
},
twitter: {
card: "summary_large_image",
title: "Haven Cafe - Coffee & Boba in Lynnwood",
description: "Specialty coffee, boba drinks, and fresh bites in a cozy, welcoming space.",
images: ["http://img.b2bpic.net/free-photo/confident-young-indian-man-black-shirt-standing-cafe_627829-5462.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Haven Cafe", description: "Coffee, boba, and fresh bites in Lynnwood."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1429,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -59,12 +59,9 @@ export default function HomePage() {
title="What Makes Haven Special"
description="Discover the essence of our cafe experience"
features={[
{
title: "Craft Coffee & Espresso", description: "Expertly crafted beverages using premium, locally-sourced beans", imageSrc: "http://img.b2bpic.net/free-photo/barista-work-coffee-shop_158595-2333.jpg?_wi=1", imageAlt: "Craft coffee and espresso drinks"},
{
title: "Signature Boba & Matcha", description: "Unique specialty drinks crafted with passion and fresh ingredients", imageSrc: "http://img.b2bpic.net/free-photo/iced-green-tea-milkshake_1339-5939.jpg", imageAlt: "Boba and matcha specialty drinks"},
{
title: "Cozy Space to Study & Hang Out", description: "The perfect environment to relax, work, or spend time with friends", imageSrc: "http://img.b2bpic.net/free-photo/woman-works-cafe-evening_1153-3549.jpg", imageAlt: "Comfortable seating area at Haven Cafe"},
{ title: "Craft Coffee & Espresso", description: "Expertly crafted beverages using premium, locally-sourced beans", imageSrc: "http://img.b2bpic.net/free-photo/barista-work-coffee-shop_158595-2333.jpg?_wi=1", imageAlt: "Craft coffee and espresso drinks"},
{ title: "Signature Boba & Matcha", description: "Unique specialty drinks crafted with passion and fresh ingredients", imageSrc: "http://img.b2bpic.net/free-photo/iced-green-tea-milkshake_1339-5939.jpg", imageAlt: "Boba and matcha specialty drinks"},
{ title: "Cozy Space to Study & Hang Out", description: "The perfect environment to relax, work, or spend time with friends", imageSrc: "http://img.b2bpic.net/free-photo/woman-works-cafe-evening_1153-3549.jpg", imageAlt: "Comfortable seating area at Haven Cafe"},
]}
gridVariant="three-columns-all-equal-width"
textboxLayout="default"
@@ -77,7 +74,17 @@ export default function HomePage() {
<InlineImageSplitTextAbout
heading={[
{
type: "text", content: "A calm, welcoming space where coffee lovers, boba enthusiasts, and hungry guests gather. Haven Cafe is more than just a cafe—it's a sanctuary in Lynnwood where quality, comfort, and community come together. Whether you're seeking a quiet moment with your favorite drink or a social hub to connect with friends, Haven Cafe is your haven."},
type: "text", content: "Uncompromising Quality"},
{
type: "text", content: "Premium beans and ingredients sourced with care to deliver exceptional flavor in every cup."},
{
type: "text", content: "Vibrant Community"},
{
type: "text", content: "A welcoming space where coffee lovers, boba enthusiasts, and friends gather to connect and create memories."},
{
type: "text", content: "Comfort & Warmth"},
{
type: "text", content: "Thoughtfully designed sanctuary where you can study, relax, or socialize in a cozy, inviting atmosphere."},
]}
useInvertedBackground={false}
buttons={[{ text: "Explore More", href: "/menu" }]}
@@ -158,4 +165,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}