diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index b12c5bf..8274414 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index b1ff7a8..a8625b9 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {
);
-}
\ No newline at end of file
+}