6 Commits

Author SHA1 Message Date
65d29eed30 Update src/app/page.tsx 2026-03-08 11:03:27 +00:00
943e63fafd Update src/app/styles/variables.css 2026-03-08 11:02:24 +00:00
d5a13b10b7 Update src/app/page.tsx 2026-03-08 11:02:23 +00:00
22aa4fcd78 Merge version_1 into main
Merge version_1 into main
2026-03-08 10:56:23 +00:00
391b6b5cab Merge version_1 into main
Merge version_1 into main
2026-03-08 10:55:23 +00:00
6c428a0e06 Merge version_1 into main
Merge version_1 into main
2026-03-08 10:54:20 +00:00
2 changed files with 23 additions and 20 deletions

View File

@@ -4,11 +4,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard"; import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
import ProductCardThree from "@/components/sections/product/ProductCardThree"; import ProductCardThree from "@/components/sections/product/ProductCardThree";
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import TextAbout from "@/components/sections/about/TextAbout"; import TextAbout from "@/components/sections/about/TextAbout";
import FaqDouble from "@/components/sections/faq/FaqDouble";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Zap, Award, Flame } from "lucide-react";
export default function HomePage() { export default function HomePage() {
const navItems = [ const navItems = [
@@ -21,25 +20,25 @@ export default function HomePage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="bounce-effect" defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="soft" borderRadius="rounded"
contentWidth="small" contentWidth="mediumLarge"
sizing="mediumSizeLargeTitles" sizing="largeSmallSizeLargeTitles"
background="circleGradient" background="none"
cardStyle="glass-depth" cardStyle="gradient-mesh"
primaryButtonStyle="double-inset" primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass" secondaryButtonStyle="solid"
headingFontWeight="medium" headingFontWeight="bold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple brandName="Allen" navItems={navItems} /> <NavbarStyleApple brandName="ALLEN" navItems={navItems} />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboard <HeroLogoBillboard
logoText="ALLEN" logoText="ALLEN SPORTSWEAR"
description="Experience premium athletic performance with our bold and energetic sportswear collection. Engineered for champions who demand excellence in every stride." description="Experience premium athletic performance with our bold and energetic collection. Engineered for champions who demand excellence in every stride."
buttons={[ buttons={[
{ {
text: "Shop Now", href: "/shop"}, text: "Shop Now", href: "/shop"},
@@ -60,6 +59,7 @@ export default function HomePage() {
title="Featured Collection" title="Featured Collection"
description="Discover our best-selling products designed for peak athletic performance" description="Discover our best-selling products designed for peak athletic performance"
tag="New Arrivals" tag="New Arrivals"
tagIcon={Flame}
products={[ products={[
{ {
id: "1", name: "Ultra Performance Running Shoe", price: "$129.99", imageSrc: "http://img.b2bpic.net/free-vector/sport-landing-page-template-with-photo_23-2148234372.jpg?_wi=1", imageAlt: "Ultra Performance Running Shoe", initialQuantity: 1, id: "1", name: "Ultra Performance Running Shoe", price: "$129.99", imageSrc: "http://img.b2bpic.net/free-vector/sport-landing-page-template-with-photo_23-2148234372.jpg?_wi=1", imageAlt: "Ultra Performance Running Shoe", initialQuantity: 1,
@@ -83,6 +83,7 @@ export default function HomePage() {
title="Complete Product Catalog" title="Complete Product Catalog"
description="Browse our full range of premium athletic wear with advanced filtering options" description="Browse our full range of premium athletic wear with advanced filtering options"
tag="Shop All" tag="Shop All"
tagIcon={Award}
products={[ products={[
{ {
id: "4", name: "Moisture-Wicking Sports Bra", price: "$59.99", imageSrc: "http://img.b2bpic.net/free-vector/futuristic-background-with-halftone-dots_1055-1041.jpg?_wi=2", imageAlt: "Moisture-Wicking Sports Bra", initialQuantity: 1, id: "4", name: "Moisture-Wicking Sports Bra", price: "$59.99", imageSrc: "http://img.b2bpic.net/free-vector/futuristic-background-with-halftone-dots_1055-1041.jpg?_wi=2", imageAlt: "Moisture-Wicking Sports Bra", initialQuantity: 1,
@@ -109,6 +110,7 @@ export default function HomePage() {
title="What Athletes Say" title="What Athletes Say"
description="Real reviews from customers who trust Allen Sportswear for their athletic performance" description="Real reviews from customers who trust Allen Sportswear for their athletic performance"
tag="Customer Reviews" tag="Customer Reviews"
tagIcon={Zap}
testimonials={[ testimonials={[
{ {
id: "1", name: "Sarah Mitchell", handle: "@sarahruns", testimonial: "Allen's running shoes have completely transformed my training. The comfort and support are unmatched, and I've shaved 2 minutes off my 5K time!", rating: 5, id: "1", name: "Sarah Mitchell", handle: "@sarahruns", testimonial: "Allen's running shoes have completely transformed my training. The comfort and support are unmatched, and I've shaved 2 minutes off my 5K time!", rating: 5,
@@ -133,6 +135,7 @@ export default function HomePage() {
<div id="about" data-section="about"> <div id="about" data-section="about">
<TextAbout <TextAbout
tag="About Allen" tag="About Allen"
tagIcon={Award}
title="Engineered for champions. Designed for everyone." title="Engineered for champions. Designed for everyone."
buttons={[ buttons={[
{ {
@@ -155,4 +158,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -11,14 +11,14 @@
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #ffffff; --background: #ffffff;
--card: #f8f8f8; --card: #f0f0f0;
--foreground: #1a1a1a; --foreground: #1a1a1a;
--primary-cta: #ff6b35; --primary-cta: #ff4500;
--primary-cta-text: #ffffff; --primary-cta-text: #ffffff;
--secondary-cta: #004e89; --secondary-cta: #1a1a1a;
--secondary-cta-text: #ffffff; --secondary-cta-text: #ffffff;
--accent: #1a1a1a; --accent: #ff6b35;
--background-accent: #ff6b35; --background-accent: #ff4500;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);