diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4f9b4c3..5f63e85 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,24 @@
import type { Metadata } from "next";
-import { Raleway } from "next/font/google";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "./styles/variables.css";
+import "./styles/base.css";
-const raleway = Raleway({
- variable: "--font-raleway", subsets: ["latin"],
-});
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Vitamix Agadir Bay | Fresh Burgers, Pizza & Smoothies", description: "Discover Vitamix Agadir Bay—your favorite restaurant for fresh burgers, authentic Italian pizza, and refreshing smoothies. Rated 4.0★ by 1,769 reviews. Dine in, drive, or delivery available.", keywords: "restaurant Agadir Bay, burger Agadir, pizza Agadir, smoothie Agadir, family dining, Italian restaurant Morocco", metadataBase: new URL("https://vitamixagadarbay.com"),
- alternates: {
- canonical: "https://vitamixagadarbay.com"
- },
- openGraph: {
- title: "Vitamix Agadir Bay | Fresh Burgers, Pizza & Smoothies", description: "Experience fresh cuisine in a stylish atmosphere. ⭐ 4.0 Rating • 1,769 Reviews", url: "https://vitamixagadarbay.com", siteName: "Vitamix Agadir Bay", type: "website", images: [
- {
- url: "https://vitamixagadarbay.com/og-image.jpg", alt: "Vitamix restaurant exterior and dining"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Vitamix Agadir Bay | Fresh Burgers, Pizza & Smoothies", description: "Rated 4.0★ by 1,769 diners. Fresh ingredients. Great atmosphere. Consistently delicious.", images: ["https://vitamixagadarbay.com/twitter-image.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Vitamix - Restaurant in Agadir Bay", description: "Fresh burgers, authentic Italian pizza, and refreshing smoothies at Vitamix restaurant in Agadir Bay."};
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 89a1458..d27a7ea 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -31,7 +31,7 @@ export default function LandingPage() {
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "Reviews", id: "reviews" },
- { name: "Reserve", id: "reserve" },
+ { name: "Products", id: "/products" },
{ name: "Contact", id: "contact" }
]}
bottomLeftText="Agadir Bay, Agadir 80000"
@@ -211,10 +211,11 @@ export default function LandingPage() {
columns={[
{
title: "Navigate", items: [
- { label: "Home", href: "#" },
+ { label: "Home", href: "/" },
{ label: "Menu", href: "#menu" },
{ label: "About", href: "#about" },
- { label: "Reviews", href: "#reviews" }
+ { label: "Reviews", href: "#reviews" },
+ { label: "Products", href: "/products" }
]
},
{
diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
new file mode 100644
index 0000000..7946a7c
--- /dev/null
+++ b/src/app/products/page.tsx
@@ -0,0 +1,118 @@
+"use client";
+
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
+import FooterSimple from '@/components/sections/footer/FooterSimple';
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+
+export default function ProductsPage() {
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}