8 Commits

Author SHA1 Message Date
c04cda59c7 Merge version_5 into main
Merge version_5 into main
2026-03-21 22:13:15 +00:00
c96c9e52d4 Update src/app/page.tsx 2026-03-21 22:13:12 +00:00
e083a534a0 Update src/app/menu/page.tsx 2026-03-21 22:13:11 +00:00
fe58141616 Update src/app/contact/page.tsx 2026-03-21 22:13:11 +00:00
52fa6349ad Update src/app/about/page.tsx 2026-03-21 22:13:10 +00:00
8369df4905 Merge version_4 into main
Merge version_4 into main
2026-03-21 22:09:51 +00:00
7d6727bf8d Update src/app/page.tsx 2026-03-21 22:09:47 +00:00
2e5237bdf3 Merge version_3 into main
Merge version_3 into main
2026-03-21 22:07:45 +00:00
4 changed files with 21 additions and 24 deletions

View File

@@ -27,10 +27,10 @@ export default function AboutPage() {
<NavbarLayoutFloatingOverlay
brandName="Ocean Seafood & Chicken"
navItems={[
{ name: "Home", id: "home" },
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{
text: "Order Online", href: "https://oceanseafoodconyers.kwickmenu.com"}}

View File

@@ -26,10 +26,10 @@ export default function ContactPage() {
<NavbarLayoutFloatingOverlay
brandName="Ocean Seafood & Chicken"
navItems={[
{ name: "Home", id: "home" },
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{
text: "Order Online", href: "https://oceanseafoodconyers.kwickmenu.com"}}

View File

@@ -4,16 +4,16 @@ import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import FaqDouble from "@/components/sections/faq/FaqDouble";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Menu } from "lucide-react";
export default function MenuPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
@@ -106,7 +106,7 @@ export default function MenuPage() {
</div>
<div id="menu-details" data-section="menu-details">
<FaqSplitMedia
<FaqDouble
title="Menu Categories"
description="Browse all menu options including combos, dinners, wings, sandwiches, sides, desserts, and beverages."
tag="FULL MENU"
@@ -115,9 +115,6 @@ export default function MenuPage() {
textboxLayout="default"
useInvertedBackground={false}
faqsAnimation="slide-up"
mediaAnimation="opacity"
imageSrc="http://img.b2bpic.net/free-photo/top-view-tasty-caesar-salad-with-different-seasonings-dark-desk_140725-66196.jpg"
imageAlt="Menu categories display"
faqs={[
{
id: "cat1", title: "Combo Meals", content: "Our signature combo meals (#1-#10) feature combinations of fresh seafood and crispy chicken, all served with fries and coleslaw."},

View File

@@ -15,10 +15,10 @@ import { Flame, Star, Heart, MapPin, ShoppingCart, Phone } from "lucide-react";
export default function HomePage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
@@ -34,8 +34,8 @@ export default function HomePage() {
title: "Quick Links", items: [
{ label: "Order Online", href: "https://oceanseafoodconyers.kwickmenu.com" },
{ label: "Call Us", href: "tel:+17702856499" },
{ label: "Our Location", href: "#location-preview" },
{ label: "Hours", href: "#final-cta" },
{ label: "Our Location", href: "/contact" },
{ label: "Hours", href: "/contact" },
],
},
{
@@ -84,7 +84,7 @@ export default function HomePage() {
text: "Order Online", href: "https://oceanseafoodconyers.kwickmenu.com"
},
{
text: "Call Now", href: "tel:+17702856499"
text: "Call Now: (770) 285-6499", href: "tel:+17702856499"
},
]}
buttonAnimation="slide-up"