diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index cc4325a..d4e252c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,45 +1,49 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Raleway } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import localFont from "next/font/local";
+import "./styles/variables.css";
+import "./styles/base.css";
+import { ServiceWrapper } from "@/providers";
+import { Tag } from "@/components";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
+const geistSans = localFont({
+ src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"});
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const raleway = Raleway({
- variable: "--font-raleway", subsets: ["latin"],
-});
+const geistMono = localFont({
+ src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"});
export const metadata: Metadata = {
- title: "Our Café - Cozy Coffee & Community Space", description: "Experience exceptional coffee, homemade pastries, and warm hospitality at our beloved neighborhood café. Read authentic 5-star reviews from our happy guests.", keywords: "café, coffee shop, pastries, cozy atmosphere, neighborhood café, reviews", openGraph: {
- title: "Our Café - Where Community Happens", description: "Join our community of coffee lovers and friends at our welcoming café.", siteName: "Our Café", type: "website"},
- twitter: {
- card: "summary_large_image", title: "Our Café - Cozy Coffee & Community", description: "Experience genuine warmth and exceptional coffee at our neighborhood café"},
-};
+ title: "Sunbeams", description: "Welcoming café with exceptional coffee and warm hospitality"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-