268 lines
9.9 KiB
TypeScript
268 lines
9.9 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
|
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
|
|
import TextAbout from "@/components/sections/about/TextAbout";
|
|
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
|
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
|
import ContactText from "@/components/sections/contact/ContactText";
|
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
|
import Link from "next/link";
|
|
import { Sparkles, ShoppingBag, Star } from "lucide-react";
|
|
|
|
export default function HomePage() {
|
|
const navItems = [
|
|
{ name: "Home", id: "home" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Shop", id: "shop" },
|
|
{ name: "Contact", id: "contact" },
|
|
];
|
|
|
|
const footerColumns = [
|
|
{
|
|
title: "Shop",
|
|
items: [
|
|
{ label: "Hoodies", href: "/shop#hoodies" },
|
|
{ label: "Sweaters", href: "/shop#sweaters" },
|
|
{ label: "Gifts", href: "/shop#gifts" },
|
|
{ label: "Accessories", href: "/shop#accessories" },
|
|
],
|
|
},
|
|
{
|
|
title: "Company",
|
|
items: [
|
|
{ label: "About Us", href: "/about" },
|
|
{ label: "Our Story", href: "/about" },
|
|
{ label: "Blog", href: "#" },
|
|
{ label: "Careers", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Contact",
|
|
items: [
|
|
{ label: "Store Location", href: "/contact" },
|
|
{ label: "Email", href: "mailto:moosesweats@hotmail.com" },
|
|
{ label: "Phone", href: "tel:+17052462777" },
|
|
{ label: "Hours", href: "/contact" },
|
|
],
|
|
},
|
|
{
|
|
title: "Legal",
|
|
items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Return Policy", href: "#" },
|
|
{ label: "Shipping Info", href: "#" },
|
|
],
|
|
},
|
|
];
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="elastic-effect"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="mediumLarge"
|
|
sizing="largeSizeMediumTitles"
|
|
background="noise"
|
|
cardStyle="inset"
|
|
primaryButtonStyle="diagonal-gradient"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="medium"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple
|
|
brandName="Moose Sweats"
|
|
navItems={[
|
|
{ name: "Home", id: "home" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Shop", id: "shop" },
|
|
{ name: "Contact", id: "contact" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero-home" data-section="hero-home">
|
|
<HeroLogoBillboardSplit
|
|
logoText="Moose Sweats"
|
|
description="Quality Clothing & Unique Gifts in Richards Landing, ON. Discover cozy sweaters, comfortable hoodies, and one-of-a-kind gift finds that celebrate Canadian charm and local pride."
|
|
background={{ variant: "noise" }}
|
|
buttons={[
|
|
{ text: "Visit Our Store", href: "/shop" },
|
|
{ text: "Learn More", href: "/about" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
layoutOrder="default"
|
|
imageSrc="http://img.b2bpic.net/free-photo/clothing-hanger-modern-shop-boutique_23-2148175634.jpg?_wi=1"
|
|
imageAlt="Moose Sweats store interior with warm lighting and cozy ambiance"
|
|
mediaAnimation="blur-reveal"
|
|
frameStyle="card"
|
|
ariaLabel="Moose Sweats hero section with store image and call-to-action"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about-home" data-section="about-home">
|
|
<TextAbout
|
|
tag="Our Story"
|
|
tagIcon={Sparkles}
|
|
tagAnimation="slide-up"
|
|
title="Welcome to Moose Sweats - Where Community Meets Comfort"
|
|
buttons={[
|
|
{ text: "Read Our Full Story", href: "/about" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
useInvertedBackground={true}
|
|
ariaLabel="About Moose Sweats section on homepage"
|
|
/>
|
|
</div>
|
|
|
|
<div id="featured-products" data-section="featured-products">
|
|
<ProductCardTwo
|
|
title="Featured Collection"
|
|
description="Hand-picked items that capture the essence of comfort and Canadian heritage"
|
|
tag="Shop"
|
|
tagIcon={ShoppingBag}
|
|
tagAnimation="slide-up"
|
|
products={[
|
|
{
|
|
id: "hoodie-forest",
|
|
brand: "Moose Sweats Premium",
|
|
name: "Forest Green Moose Hoodie",
|
|
price: "$64.99",
|
|
rating: 5,
|
|
reviewCount: "48",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-hipster-man-woman-love-traveling-together-wild-nature_285396-2048.jpg?_wi=1",
|
|
imageAlt: "Forest green hoodie with moose emblem design",
|
|
},
|
|
{
|
|
id: "sweater-cream",
|
|
brand: "Moose Sweats Comfort",
|
|
name: "Cream Cable Knit Sweater",
|
|
price: "$74.99",
|
|
rating: 5,
|
|
reviewCount: "32",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-by-tree-spring-forest-with-drink-thermos_1157-32856.jpg?_wi=1",
|
|
imageAlt: "Cream cable knit sweater perfect for cozy moments",
|
|
},
|
|
{
|
|
id: "gift-set",
|
|
brand: "Moose Sweats Local",
|
|
name: "Northern Ontario Gift Set",
|
|
price: "$89.99",
|
|
rating: 5,
|
|
reviewCount: "26",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-knitted-hats_23-2149311009.jpg?_wi=1",
|
|
imageAlt: "Curated gift set featuring local artisan items",
|
|
},
|
|
]}
|
|
gridVariant="three-columns-all-equal-width"
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
buttons={[
|
|
{ text: "View All Products", href: "/shop" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials-home" data-section="testimonials-home">
|
|
<TestimonialCardOne
|
|
title="What Our Customers Say"
|
|
description="Join our growing community of satisfied customers who love what Moose Sweats brings to Richards Landing"
|
|
tag="Reviews"
|
|
tagIcon={Star}
|
|
tagAnimation="slide-up"
|
|
testimonials={[
|
|
{
|
|
id: "testimonial-1",
|
|
name: "Sarah Mitchell",
|
|
role: "Local Resident",
|
|
company: "Richards Landing Community",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-walking-autumn-wearing-coat_285396-10970.jpg",
|
|
imageAlt: "Sarah Mitchell customer testimonial",
|
|
},
|
|
{
|
|
id: "testimonial-2",
|
|
name: "James Anderson",
|
|
role: "Outdoor Enthusiast",
|
|
company: "Northern Ontario Explorer",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-posing-fashionable-outfit_23-2149021814.jpg",
|
|
imageAlt: "James Anderson customer testimonial",
|
|
},
|
|
{
|
|
id: "testimonial-3",
|
|
name: "Emily Rodriguez",
|
|
role: "Gift Shopper",
|
|
company: "Happy Customers",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-berries_23-2150062927.jpg",
|
|
imageAlt: "Emily Rodriguez customer testimonial",
|
|
},
|
|
{
|
|
id: "testimonial-4",
|
|
name: "David Thompson",
|
|
role: "Regular Visitor",
|
|
company: "Local Business Supporter",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/orange-day-sitting-single-weather_1304-891.jpg",
|
|
imageAlt: "David Thompson customer testimonial",
|
|
},
|
|
{
|
|
id: "testimonial-5",
|
|
name: "Lisa Wong",
|
|
role: "Tourism Guide",
|
|
company: "Ontario Tourism",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/woman-hold-fresh-picked-wild-mushrooms_346278-76.jpg",
|
|
imageAlt: "Lisa Wong customer testimonial",
|
|
},
|
|
{
|
|
id: "testimonial-6",
|
|
name: "Michael O'Brien",
|
|
role: "Loyal Customer",
|
|
company: "Repeat Guest",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-beautiful-girl-city_1301-5233.jpg",
|
|
imageAlt: "Michael O'Brien customer testimonial",
|
|
},
|
|
]}
|
|
gridVariant="three-columns-all-equal-width"
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
buttons={[
|
|
{ text: "Join Our Community", href: "/contact" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact-home" data-section="contact-home">
|
|
<ContactText
|
|
text="Visit Us Today - Open Daily in Beautiful Richards Landing, Ontario"
|
|
animationType="reveal-blur"
|
|
buttons={[
|
|
{ text: "Get Directions", href: "/contact" },
|
|
{ text: "Call Us", href: "tel:+17052462777" },
|
|
]}
|
|
background={{ variant: "noise" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer-home" data-section="footer-home">
|
|
<FooterMedia
|
|
imageSrc="http://img.b2bpic.net/free-photo/square-front-modern-office-buildings_1359-1123.jpg?_wi=1"
|
|
imageAlt="Moose Sweats store exterior in Richards Landing"
|
|
logoText="Moose Sweats"
|
|
copyrightText="© 2025 Moose Sweats | Richards Landing, Ontario, Canada"
|
|
columns={footerColumns}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |