diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 318a309..ea9c46a 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,58 +1,39 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
+import "./styles/variables.css";
+import "./styles/base.css";
import { Inter } from "next/font/google";
-import { Poppins } 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 poppins = Poppins({
- variable: "--font-poppins", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
-
export const metadata: Metadata = {
- title: "The Brownie Spot | Best Brownies in Chitlapakkam, Chennai", description: "Indulge in fresh, handcrafted brownies at The Brownie Spot in Chitlapakkam, Chennai. Order rich chocolate brownies through Swiggy & Zomato. 5+ varieties available!", keywords: "brownies Chitlapakkam, best brownies Chennai, fresh baked brownies, chocolate brownies near Chitlapakkam Lake, dessert delivery Swiggy Zomato, homemade brownies", metadataBase: new URL("https://thebrouniespot.local"),
- alternates: {
- canonical: "https://thebrouniespot.local"},
- openGraph: {
- title: "The Brownie Spot | Freshly Baked Brownies", description: "Discover the best brownies in Chitlapakkam. Fresh daily, delivered through Swiggy and Zomato.", url: "https://thebrouniespot.local", siteName: "The Brownie Spot", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/beautiful-still-life-with-chocolate-concept_23-2147985544.jpg", alt: "Fresh baked brownie"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "The Brownie Spot | Best Brownies in Chitlapakkam", description: "Fresh, handcrafted brownies delivered to your door. Order now through Swiggy or Zomato!", images: ["http://img.b2bpic.net/free-photo/beautiful-still-life-with-chocolate-concept_23-2147985544.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "The Brownie Spot", description: "Freshly baked brownies in Chitlapakkam. Indulge in rich, homemade chocolate brownies delivered right to your door."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
+
+
{children}
-
+
+
+
-
);
}
+
+function ServiceWrapper({ children }: { children: React.ReactNode }) {
+ return <>{children}>;
+}
+
+function Tag() {
+ return null;
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 297c589..5ae8dc5 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "Reviews", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
+ { name: "Terms of Service", id: "/terms-of-service" },
]}
button={{ text: "Order Now", href: "contact" }}
/>
@@ -173,7 +174,7 @@ export default function LandingPage() {
{
id: "5", title: "Where is your shop located?", content: "The Brownie Spot is located in Chitlapakkam, Chennai, near Chitlapakkam Lake. While we primarily serve through Swiggy and Zomato, you're welcome to inquire about direct pickups."},
{
- id: "6", title: "Can I customize my brownie order?", content: "We currently offer our signature brownie varieties. For special requests or bulk orders, please check the special instructions option on Swiggy or Zomato, or contact us directly for custom arrangements."}
+ id: "6", title: "Can I customize my brownie order?", content: "We currently offer our signature brownie varieties. For special requests or bulk orders, please check the special instructions option on Swiggy or Zomato, or contact us directly for custom arrangements."},
]}
imageSrc="http://img.b2bpic.net/free-photo/chocolate-pie-light-napkin_23-2147957892.jpg"
imageAlt="Brownie preparation"
@@ -222,7 +223,7 @@ export default function LandingPage() {
title: "Contact", items: [
{ label: "Location: Chitlapakkam, Chennai", href: "#" },
{ label: "Near Chitlapakkam Lake", href: "#" },
- { label: "Follow Us", href: "#" },
+ { label: "Terms of Service", href: "/terms-of-service" },
],
},
]}
diff --git a/src/app/terms-of-service/page.tsx b/src/app/terms-of-service/page.tsx
new file mode 100644
index 0000000..f4f0b82
--- /dev/null
+++ b/src/app/terms-of-service/page.tsx
@@ -0,0 +1,153 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
+import LegalSection from "@/components/legal/LegalSection";
+import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
+
+export default function TermsOfServicePage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}