diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 0470fd3..6817972 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Montserrat } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const montserrat = Montserrat({
- variable: "--font-montserrat", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Luxe Café | Premium Specialty Coffee Experience", description: "Discover exceptional single-origin specialty coffee crafted by master baristas. Premium beans, artisan roasting, and pure excellence in every cup.", keywords: "specialty coffee, premium cafe, artisan roasting, single origin, luxury coffee shop", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Luxe Café | Premium Specialty Coffee", description: "Experience the finest specialty coffee crafted with premium beans and expert precision.", type: "website", siteName: "Luxe Café", images: [
- {
- url: "http://img.b2bpic.net/free-photo/young-attractive-woman-striped-trench-coat-happily-talking-cellphone-sitting-near-big-window-while-spending-time-modern-cafe_574295-4851.jpg", alt: "Luxe Café Premium Interior"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Luxe Café | Premium Specialty Coffee", description: "Exceptional coffee crafted with passion and precision.", images: ["http://img.b2bpic.net/free-photo/young-attractive-woman-striped-trench-coat-happily-talking-cellphone-sitting-near-big-window-while-spending-time-modern-cafe_574295-4851.jpg"],
- },
-};
+ title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-