From 2c682c74e19c4750ed728493561b030d9890f3ce Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 23:34:14 +0000 Subject: [PATCH 1/6] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 157 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..110b229 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,157 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+
+

Find Us On The Map

+ +
+
+ +
+ +
+ + +
+ ); +} From 120f6988ea1339c38feae46c0338c5c06e977373 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 23:34:14 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a2d61c2..8c7d8d2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,36 +1,26 @@ 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"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Wally World Mini Mart | Local Convenience Store in Decatur, AL", description: "Best burgers, friendly service & convenience in Decatur. Fresh food, quality snacks, gas, and more. Visit Wally World Mini Mart today. Open daily until 10 PM.", keywords: "convenience store, mini mart, Decatur AL, burgers, fast food, local business, gas station, snacks", metadataBase: new URL("https://wallyworldminimart.com"), + title: "Wally World Mini Mart | Fuel, Food & Fast Service in Decatur, AL", description: "Premium burgers, fresh food, quality fuel services, and convenient shopping. Wally World Mini Mart - your trusted local stop for fuel, food, and fast service in Decatur. Open daily until 10 PM.", keywords: "convenience store, mini mart, Decatur AL, burgers, fast food, local business, gas station, fuel, snacks, breakfast sandwiches", metadataBase: new URL("https://wallyworldminimart.com"), alternates: { canonical: "https://wallyworldminimart.com"}, openGraph: { - title: "Wally World Mini Mart - Your Local Favorite", description: "Premium burgers, friendly service, and everything you need. Open daily until 10 PM.", url: "https://wallyworldminimart.com", siteName: "Wally World Mini Mart", type: "website", images: [ + title: "Wally World Mini Mart - Fuel, Food & Fast Service", description: "Premium burgers, fresh food, quality fuel services. Open daily until 10 PM.", url: "https://wallyworldminimart.com", siteName: "Wally World Mini Mart", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/confident-salesman-packing-food-woman-grocery-store_662251-1335.jpg", alt: "Wally World Mini Mart storefront"}, ], }, twitter: { - card: "summary_large_image", title: "Wally World Mini Mart - Quality & Convenience", description: "Best burgers in Decatur. Friendly service. Open daily until 10 PM.", images: ["http://img.b2bpic.net/free-photo/confident-salesman-packing-food-woman-grocery-store_662251-1335.jpg"], + card: "summary_large_image", title: "Wally World Mini Mart - Fuel, Food & Fast Service", description: "Best burgers in Decatur. Fresh food. Quality fuel. Open daily until 10 PM.", images: [ + "http://img.b2bpic.net/free-photo/confident-salesman-packing-food-woman-grocery-store_662251-1335.jpg"], }, robots: { index: true, @@ -46,9 +36,7 @@ export default function RootLayout({ return ( - + {children} From 0f6fcdc05981f536e0c58799fddd41d837c0db4c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 23:34:14 +0000 Subject: [PATCH 3/6] Add src/app/menu/page.tsx --- src/app/menu/page.tsx | 169 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 169 insertions(+) create mode 100644 src/app/menu/page.tsx diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx new file mode 100644 index 0000000..f67d822 --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,169 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function MenuPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} From ee1739aa0880ac3c7e7fa4b48383142400d3bc0d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 23:34:15 +0000 Subject: [PATCH 4/6] Update src/app/page.tsx --- src/app/page.tsx | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 803904a..b77c10b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -27,9 +27,9 @@ export default function LandingPage() { @@ -158,15 +158,15 @@ export default function LandingPage() { columns={[ { title: "Navigate", items: [ - { label: "Home", href: "#" }, + { label: "Home", href: "/" }, { label: "About", href: "#about" }, - { label: "Services", href: "#services" }, - { label: "Contact", href: "#contact" } + { label: "Menu", href: "/menu" }, + { label: "Contact", href: "/contact" } ] }, { title: "Hours", items: [ - { label: "Mon-Sun: Open", href: "#" }, + { label: "Mon-Sun: Open 5:30 AM", href: "#" }, { label: "Closes 10 PM", href: "#" }, { label: "Call for holidays", href: "tel:+12563532181" } ] @@ -175,13 +175,13 @@ export default function LandingPage() { title: "Contact", items: [ { label: "Call Us", href: "tel:+12563532181" }, { label: "Get Directions", href: "https://maps.google.com/?q=2505+Point+Mallard+Dr+SE+Decatur+AL+35601" }, - { label: "Email", href: "#" } + { label: "Email Us", href: "mailto:info@wallyworldminimart.com" } ] }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" } + { label: "Privacy Policy", href: "/privacy" }, + { label: "Terms of Service", href: "/terms" } ] } ]} From 5813d1d09c0993fba298110c68eb19be58a46501 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 23:34:15 +0000 Subject: [PATCH 5/6] Add src/app/privacy/page.tsx --- src/app/privacy/page.tsx | 145 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 src/app/privacy/page.tsx diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx new file mode 100644 index 0000000..814e80a --- /dev/null +++ b/src/app/privacy/page.tsx @@ -0,0 +1,145 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import LegalSection from '@/components/legal/LegalSection'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function PrivacyPage() { + return ( + + + + + + + + ); +} From f8ec521db9d7574d0b9e4e6b07ec7bc2424d0764 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 23:34:16 +0000 Subject: [PATCH 6/6] Add src/app/terms/page.tsx --- src/app/terms/page.tsx | 152 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 src/app/terms/page.tsx diff --git a/src/app/terms/page.tsx b/src/app/terms/page.tsx new file mode 100644 index 0000000..01c8803 --- /dev/null +++ b/src/app/terms/page.tsx @@ -0,0 +1,152 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import LegalSection from '@/components/legal/LegalSection'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function TermsPage() { + return ( + + + + + + + + ); +}