Merge version_4 into main #5

Merged
bender merged 5 commits from version_4 into main 2026-04-20 12:08:32 +00:00
5 changed files with 79 additions and 83 deletions

View File

@@ -3,36 +3,37 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import TextAbout from '@/components/sections/about/TextAbout';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function AboutPage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Location", id: "/location" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Local Business"
/>
<div className="pt-32">
<TextSplitAbout
title="About Our Company"
description={[
"Founded in 2010, Local Business has grown into a cornerstone of our community. We believe in providing personalized service and quality products.", "Our team is dedicated to excellence and ensuring every customer has a great experience, whether in-store or online."
]}
useInvertedBackground={false}
<div className="pt-32 pb-20">
<TextAbout
title="About Our Neighborhood Shop"
tag="Our Journey"
className="py-20"
/>
</div>
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/man-growing-cultivating-plants-indoors_23-2149854844.jpg?_wi=1"
logoText="Local Business"
columns={[]}
imageSrc="http://img.b2bpic.net/free-photo/man-growing-cultivating-plants-indoors_23-2149854844.jpg"
columns={[
{ title: "Pages", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Location", href: "/location" }] },
{ title: "Contact", items: [{ label: "Call Us", href: "tel:5550123" }] },
]}
/>
</ReactLenis>
</ThemeProvider>

View File

@@ -3,41 +3,47 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function GalleryPage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Gallery", id: "/gallery" },
{ name: "Location", id: "/location" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Local Business"
/>
<div className="pt-32">
<FeatureCardSeven
animationType="slide-up"
textboxLayout="default"
title="Business Gallery"
description="A showcase of our shop, products, and community moments."
features={[
{ title: "Storefront", description: "Our welcoming entrance", imageSrc: "http://img.b2bpic.net/free-photo/wedding-salon-with-white-gowns-mannequins_107791-15861.jpg" },
{ title: "Interior", description: "A look inside our shop", imageSrc: "http://img.b2bpic.net/free-photo/famous-fashion-designer-shopping-clothing-items-accessories-store_482257-93112.jpg?_wi=1" },
{ title: "Craftsmanship", description: "Detailing our work", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-old-vessels-second-hand-market_23-2149338478.jpg?_wi=1" },
]}
useInvertedBackground={false}
/>
<div id="gallery" data-section="gallery" className="pt-32">
<ProductCardThree
title="Our Product Gallery"
description="Explore our carefully curated collection of unique home goods."
products={[
{ id: "p1", name: "Ceramic Vase", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/vases-shelves-room_23-2148753232.jpg" },
{ id: "p2", name: "Handmade Throw", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/cozy-interior-with-knitted-blanket-cushion-sofa_23-2148869151.jpg" },
{ id: "p3", name: "Artisan Candle", price: "$25", imageSrc: "http://img.b2bpic.net/free-photo/candles-home-decor_23-2148905742.jpg" }
]}
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
/>
</div>
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/man-growing-cultivating-plants-indoors_23-2149854844.jpg?_wi=2"
logoText="Local Business"
columns={[]}
imageSrc="http://img.b2bpic.net/free-photo/man-growing-cultivating-plants-indoors_23-2149854844.jpg"
logoText="Local Business"
columns={[
{ title: "Pages", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Gallery", href: "/gallery" }, { label: "Location", href: "/location" }] },
{ title: "Contact", items: [{ label: "Call Us", href: "tel:5550123" }] },
]}
copyrightText="© 2025 Local Business | All Rights Reserved"
/>
</ReactLenis>
</ThemeProvider>

View File

@@ -1,49 +1,35 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ReactLenis from "lenis/react";
export default function LocationPage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Location", id: "/location" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Local Business"
/>
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto text-center">
<h1 className="text-4xl font-bold mb-6">Visit Our Location</h1>
<p className="text-lg text-gray-600 mb-8">Find us in the heart of the community, ready to serve you.</p>
<div className="aspect-video bg-gray-200 rounded-2xl flex items-center justify-center overflow-hidden">
<p>Interactive Map Integration Coming Soon</p>
</div>
<div className="mt-10 text-left space-y-4">
<p><strong>Address:</strong> 123 Community Way, Neighborhood City</p>
<p><strong>Hours:</strong> Mon-Sat: 9am - 8pm</p>
</div>
<div className="pt-32 pb-20 px-8 min-h-[60vh]">
<h1 className="text-4xl font-bold mb-6">Visit Us</h1>
<p className="text-lg mb-4">We are located in the heart of the neighborhood at 123 Artisan Way.</p>
<p className="text-lg">Our doors are open Monday through Saturday for all your home good needs.</p>
</div>
<ContactCTA
tag="Contact"
title="Questions about our location?"
description="Reach out to us if you need help finding our shop!"
buttons={[{ text: "Call Now", href: "tel:5550123" }]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
<FooterMedia
videoSrc="http://img.b2bpic.net/free-photo/man-growing-cultivating-plants-indoors_23-2149854844.jpg?_wi=4"
logoText="Local Business"
imageSrc="http://img.b2bpic.net/free-photo/man-growing-cultivating-plants-indoors_23-2149854844.jpg"
columns={[
{ title: "Pages", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Location", href: "/location" }] },
{ title: "Pages", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Location", href: "/location" }] },
{ title: "Contact", items: [{ label: "Call Us", href: "tel:5550123" }] },
]}
/>
</ReactLenis>

View File

@@ -33,6 +33,7 @@ export default function LandingPage() {
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Location", id: "/location" },
{ name: "Contact", id: "/#contact" },
]}
@@ -119,7 +120,7 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/man-growing-cultivating-plants-indoors_23-2149854844.jpg"
logoText="Local Business"
columns={[
{ title: "Pages", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Location", href: "/location" }] },
{ title: "Pages", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Gallery", href: "/gallery" }, { label: "Location", href: "/location" }] },
{ title: "Contact", items: [{ label: "Call Us", href: "tel:5550123" }] },
]}
copyrightText="© 2025 Local Business | All Rights Reserved"

View File

@@ -1,45 +1,47 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import ReactLenis from "lenis/react";
export default function ServicesPage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Gallery", id: "/gallery" },
{ name: "Location", id: "/location" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Local Business"
/>
<div className="pt-24">
<FeatureCardSeven
animationType="slide-up"
textboxLayout="split"
title="Our Services"
description="We provide a comprehensive range of professional services tailored to the needs of our local community."
features={[
{ title: "Premium Consulting", description: "Personalized guidance for all your local business needs.", imageSrc: "http://img.b2bpic.net/free-photo/famous-fashion-designer-shopping-clothing-items-accessories-store_482257-93112.jpg?_wi=2" },
{ title: "Custom Design", description: "High-quality design services focused on your unique style.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-senior-painter-indoors_23-2150182579.jpg" },
{ title: "Local Repairs", description: "Reliable repair services for your home and personal items.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-old-vessels-second-hand-market_23-2149338478.jpg?_wi=2" }
]}
useInvertedBackground={false}
/>
<div id="services" data-section="services" className="pt-32">
<FeatureCardSeven
title="Our Premium Services"
description="Discover the range of services we offer to help you and your home thrive."
features={[
{ title: "Artisan Consulting", description: "Personalized guidance for your home interior." },
{ title: "Custom Gifting", description: "Bespoke gift baskets for every occasion." },
{ title: "Local Repairs", description: "High-quality repairs for your household goods." }
]}
textboxLayout="split"
useInvertedBackground={false}
/>
</div>
<FooterMedia
videoSrc="http://img.b2bpic.net/free-photo/man-growing-cultivating-plants-indoors_23-2149854844.jpg?_wi=3"
logoText="Local Business"
columns={[
{ title: "Pages", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Location", href: "/location" }] },
]}
imageSrc="http://img.b2bpic.net/free-photo/man-growing-cultivating-plants-indoors_23-2149854844.jpg"
logoText="Local Business"
columns={[
{ title: "Pages", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Gallery", href: "/gallery" }, { label: "Location", href: "/location" }] },
{ title: "Contact", items: [{ label: "Call Us", href: "tel:5550123" }] },
]}
copyrightText="© 2025 Local Business | All Rights Reserved"
/>
</ReactLenis>
</ThemeProvider>