diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index d006065..5a26760 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,45 +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: "Cravings Late Night Food | Air Ronge's Best Late-Night Burgers", description: "Premium late-night restaurant in Air Ronge, SK. Fresh 8oz beef burgers, bannock specials, Indian tacos & wings. Open 4-10pm. Order online or visit us today.", keywords: "late night food, burgers, bannock burger, Air Ronge restaurant, takeaway, delivery, wings, Indian taco", openGraph: {
- title: "Cravings Late Night Food - Premium Late-Night Dining", description: "Discover Air Ronge's favorite late-night restaurant. Fresh burgers, bannock specials, and comfort food.", url: "https://cravingslatenight.ca", siteName: "Cravings Late Night Food", type: "website"},
- twitter: {
- card: "summary_large_image", title: "Cravings Late Night Food", description: "Air Ronge's best late-night burgers and wings. Open till 10pm."},
-};
+ title: "Cravings Late Night Food", description: "Late-night burgers, bannock specials, and comfort food in Air Ronge"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 75e436a..0b48f56 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -14,7 +14,7 @@ import { Flame, UtensilsCrossed, Package, Truck } from "lucide-react";
export default function CravingsLandingPage() {
return (
+