Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-04-21 21:50:20 +00:00
2 changed files with 19 additions and 4 deletions

View File

@@ -8,7 +8,18 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function ContactPage() {
return (
<ThemeProvider>
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="large"
background="floatingGradient"
cardStyle="layered-gradient"
primaryButtonStyle="double-inset"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<ReactLenis root>
<NavbarStyleCentered
navItems={[
@@ -25,6 +36,7 @@ export default function ContactPage() {
title="Get in Touch"
description="6/31 Ross St, Glenbrook NSW 2773. Call us at (02) 4739 0000"
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<FooterSimple
@@ -32,6 +44,7 @@ export default function ContactPage() {
{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/#about" }, { label: "Menu", href: "/#menu" }] },
]}
bottomLeftText="© 2024 Glenbrook Takeaway."
bottomRightText=""
/>
</ReactLenis>
</ThemeProvider>

View File

@@ -2,16 +2,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import TextAbout from '@/components/sections/about/TextAbout';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
export default function LandingPage() {
return (
@@ -68,6 +66,7 @@ export default function LandingPage() {
<FeatureCardSixteen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
negativeCard={{ items: ["Always busy peak times", "Walk-in wait times apply"] }}
positiveCard={{ items: ["Fresh, daily ingredients", "Affordable local pricing", "Friendly neighborhood service", "Best burger in town"] }}
title="Why Glenbrook Loves Our Food"
@@ -96,6 +95,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="split"
gridVariant="asymmetric-60-wide-40-narrow"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "Sarah Miller", role: "Local", company: "Glenbrook", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25268.jpg" },
{ id: "t2", name: "John Thompson", role: "Regular", company: "Glenbrook", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/vertical-photo-beautiful-lady-sitting-restaurant-smiling-camera_114579-92383.jpg" },
@@ -113,6 +113,7 @@ export default function LandingPage() {
]}
sideTitle="Frequently Asked Questions"
faqsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
@@ -122,6 +123,7 @@ export default function LandingPage() {
{ title: "Links", items: [{ label: "About", href: "/#about" }, { label: "Menu", href: "/#menu" }, { label: "Contact", href: "/contact" }] },
]}
bottomLeftText="© 2024 Glenbrook Takeaway."
bottomRightText=""
/>
</div>
</ReactLenis>