Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bd67a1fbe1 | |||
| 96b7b86e2a | |||
| bf76222407 | |||
| e39d0b9d71 | |||
| 99298e8bab |
1415
src/app/layout.tsx
1415
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import { Award, DollarSign, Heart, Mail, Package, ShoppingBag, ShoppingCart, Shirt, Sparkles, Star, Users, Wind, Zap } from "lucide-react";
|
||||
import { Award, DollarSign, Heart, Mail, Package, ShoppingBag, ShoppingCart, Shirt, Sparkles, Star, Users, Wind, Zap, Cross } from "lucide-react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard";
|
||||
@@ -39,10 +39,10 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardDashboard
|
||||
title="NewRacksStylez: Premium Urban Fashion"
|
||||
description="Discover our exclusive collection of hoodies, shirts, and pants designed for the modern lifestyle. Quality crafted apparel at unbeatable prices."
|
||||
tag="Limited Collection"
|
||||
tagIcon={Sparkles}
|
||||
title="NewRacksStylez: Premium Christian Urban Fashion"
|
||||
description="Discover our exclusive collection of faith-inspired hoodies, shirts, and pants designed for the modern Christian lifestyle. Quality crafted apparel at unbeatable prices."
|
||||
tag="Faith-Based Collection"
|
||||
tagIcon={Cross}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
@@ -64,13 +64,13 @@ export default function LandingPage() {
|
||||
stats: [
|
||||
{
|
||||
title: "Hoodies", values: [55, 60, 55],
|
||||
description: "Premium hoodies"},
|
||||
description: "Premium faith hoodies"},
|
||||
{
|
||||
title: "Shirts", values: [30, 35, 30],
|
||||
description: "Quality shirts"},
|
||||
description: "Christian graphic shirts"},
|
||||
{
|
||||
title: "Pants", values: [65, 70, 68],
|
||||
description: "Durable pants"},
|
||||
description: "Durable faith pants"},
|
||||
],
|
||||
chartTitle: "Sales Performance", chartData: [
|
||||
{ value: 45 },
|
||||
@@ -80,9 +80,9 @@ export default function LandingPage() {
|
||||
{ value: 65 },
|
||||
],
|
||||
listTitle: "Latest Orders", listItems: [
|
||||
{ icon: ShoppingCart, title: "Premium Hoodie Bundle", status: "Processing" },
|
||||
{ icon: Shirt, title: "Graphic Shirts Pack", status: "Shipped" },
|
||||
{ icon: Package, title: "Pants Collection", status: "Delivered" },
|
||||
{ icon: ShoppingCart, title: "Premium Faith Hoodie Bundle", status: "Processing" },
|
||||
{ icon: Shirt, title: "Christian Graphic Shirts Pack", status: "Shipped" },
|
||||
{ icon: Package, title: "Faith Pants Collection", status: "Delivered" },
|
||||
],
|
||||
}}
|
||||
/>
|
||||
@@ -91,7 +91,7 @@ export default function LandingPage() {
|
||||
<div id="featured-products" data-section="featured-products">
|
||||
<ProductCardThree
|
||||
title="Featured Collection"
|
||||
description="Check out our most popular items loved by customers worldwide"
|
||||
description="Check out our most popular faith-inspired items loved by Christian customers worldwide"
|
||||
tag="Best Sellers"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
@@ -101,13 +101,13 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
products={[
|
||||
{
|
||||
id: "hoodie-premium", name: "Premium Black Hoodie", price: "$55.00", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-boy-doing-parkour_23-2150373120.jpg?_wi=1", imageAlt: "Premium black hoodie", initialQuantity: 1,
|
||||
id: "hoodie-premium", name: "Premium Faith Black Hoodie", price: "$55.00", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-boy-doing-parkour_23-2150373120.jpg?_wi=1", imageAlt: "Premium black faith hoodie", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "shirt-classic", name: "Classic Graphic T-Shirt", price: "$30.00", imageSrc: "http://img.b2bpic.net/free-photo/spring-wardrobe-switch-flat-lay_23-2150264145.jpg?_wi=1", imageAlt: "Classic graphic shirt", initialQuantity: 1,
|
||||
id: "shirt-classic", name: "Christian Graphic T-Shirt", price: "$30.00", imageSrc: "http://img.b2bpic.net/free-photo/spring-wardrobe-switch-flat-lay_23-2150264145.jpg?_wi=1", imageAlt: "Christian graphic shirt", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "pants-premium", name: "Premium Quality Pants", price: "$65.00", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-jumping_23-2148925642.jpg?_wi=1", imageAlt: "Premium quality pants", initialQuantity: 1,
|
||||
id: "pants-premium", name: "Premium Faith Quality Pants", price: "$65.00", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-jumping_23-2148925642.jpg?_wi=1", imageAlt: "Premium faith quality pants", initialQuantity: 1,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -116,7 +116,7 @@ export default function LandingPage() {
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
title="About NewRacksStylez"
|
||||
description="We are committed to delivering premium urban fashion that combines style, comfort, and affordability for the modern lifestyle."
|
||||
description="We are committed to delivering premium Christian urban fashion that combines faith, style, comfort, and affordability for the modern Christian lifestyle."
|
||||
tag="Our Story"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="slide-up"
|
||||
@@ -125,19 +125,19 @@ export default function LandingPage() {
|
||||
imagePosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-length-view-dreamy-woman-trench-coat_197531-19711.jpg?_wi=2"
|
||||
imageAlt="NewRacksStylez brand story"
|
||||
imageAlt="NewRacksStylez faith-based brand story"
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Premium Quality", description: "Carefully selected fabrics and manufacturing standards ensure lasting quality", icon: Zap,
|
||||
title: "Premium Quality", description: "Carefully selected fabrics and manufacturing standards ensure lasting quality for our Christian apparel", icon: Zap,
|
||||
},
|
||||
{
|
||||
title: "Affordable Pricing", description: "Competitive prices make premium fashion accessible to everyone", icon: DollarSign,
|
||||
title: "Faith-Based Values", description: "Our Christian values are reflected in every piece we create for our community", icon: Cross,
|
||||
},
|
||||
{
|
||||
title: "Customer Focused", description: "Your satisfaction is our priority with excellent support", icon: Users,
|
||||
title: "Affordable Pricing", description: "Competitive prices make premium faith-inspired fashion accessible to everyone", icon: DollarSign,
|
||||
},
|
||||
{
|
||||
title: "Trendy Designs", description: "Stay current with our latest fashion-forward collections", icon: Sparkles,
|
||||
title: "Trendy Designs", description: "Stay current with our latest faith-forward and fashion-forward collections", icon: Sparkles,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -146,9 +146,9 @@ export default function LandingPage() {
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
title="Complete Collection"
|
||||
description="Browse our full range of hoodies, shirts, and pants"
|
||||
description="Browse our full range of faith-inspired hoodies, shirts, and pants. Enjoy fast shipping and our 100% satisfaction guarantee on all orders."
|
||||
tag="Shop All"
|
||||
tagIcon={ShoppingBag}
|
||||
tagIcon={ShoppingCart}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[{ text: "View All Products", href: "#" }]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -158,22 +158,22 @@ export default function LandingPage() {
|
||||
gridVariant="bento-grid"
|
||||
products={[
|
||||
{
|
||||
id: "hoodie-1", name: "Premium Black Hoodie", price: "$55.00", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-boy-doing-parkour_23-2150373120.jpg?_wi=2", imageAlt: "Black premium hoodie", initialQuantity: 1,
|
||||
id: "hoodie-1", name: "Premium Black Faith Hoodie", price: "$55.00", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-boy-doing-parkour_23-2150373120.jpg?_wi=2", imageAlt: "Black premium faith hoodie", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "shirt-1", name: "Classic White Shirt", price: "$30.00", imageSrc: "http://img.b2bpic.net/free-photo/spring-wardrobe-switch-flat-lay_23-2150264145.jpg?_wi=2", imageAlt: "White classic shirt", initialQuantity: 1,
|
||||
id: "shirt-1", name: "Christian White Shirt", price: "$30.00", imageSrc: "http://img.b2bpic.net/free-photo/spring-wardrobe-switch-flat-lay_23-2150264145.jpg?_wi=2", imageAlt: "White Christian shirt", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "pants-1", name: "Black Cargo Pants", price: "$70.00", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-jumping_23-2148925642.jpg?_wi=2", imageAlt: "Black cargo pants", initialQuantity: 1,
|
||||
id: "pants-1", name: "Black Faith Cargo Pants", price: "$70.00", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-jumping_23-2148925642.jpg?_wi=2", imageAlt: "Black faith cargo pants", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "hoodie-2", name: "Navy Blue Hoodie", price: "$55.00", imageSrc: "http://img.b2bpic.net/free-photo/young-japanese-man-blue-sweater-outdoors_23-2149010090.jpg", imageAlt: "Navy blue hoodie", initialQuantity: 1,
|
||||
id: "hoodie-2", name: "Navy Blue Faith Hoodie", price: "$55.00", imageSrc: "http://img.b2bpic.net/free-photo/young-japanese-man-blue-sweater-outdoors_23-2149010090.jpg", imageAlt: "Navy blue faith hoodie", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "shirt-2", name: "Graphic T-Shirt", price: "$30.00", imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-accessories_23-2148107546.jpg", imageAlt: "Graphic t-shirt", initialQuantity: 1,
|
||||
id: "shirt-2", name: "Christian Graphic T-Shirt", price: "$30.00", imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-accessories_23-2148107546.jpg", imageAlt: "Christian graphic t-shirt", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "pants-2", name: "Khaki Pants", price: "$65.00", imageSrc: "http://img.b2bpic.net/free-photo/clothing-hanger-modern-shop-boutique_23-2148175634.jpg", imageAlt: "Khaki pants", initialQuantity: 1,
|
||||
id: "pants-2", name: "Khaki Faith Pants", price: "$65.00", imageSrc: "http://img.b2bpic.net/free-photo/clothing-hanger-modern-shop-boutique_23-2148175634.jpg", imageAlt: "Khaki faith pants", initialQuantity: 1,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -181,15 +181,15 @@ export default function LandingPage() {
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
title="Trusted by Fashion Enthusiasts"
|
||||
description="Join thousands of customers who love NewRacksStylez quality and style"
|
||||
tag="Community"
|
||||
title="Trusted by Christian Fashion Enthusiasts"
|
||||
description="Join thousands of customers who love NewRacksStylez faith-based quality and style"
|
||||
tag="Christian Community"
|
||||
tagIcon={Users}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Fashion Forward", "Street Style Central", "Urban Wear Hub", "Trend Setters", "Quality Apparel Co", "Style Icons", "Premium Fashion", "Modern Threads"]}
|
||||
"Faith Fashion Forward", "Christian Street Style", "Urban Christian Wear", "Faith Trend Setters", "Premium Christian Apparel", "Style Icons in Faith", "Premium Faith Fashion", "Modern Christian Threads"]}
|
||||
speed={40}
|
||||
showCard={true}
|
||||
/>
|
||||
@@ -211,7 +211,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "6", name: "Emily Chen", imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-office-2_1262-1488.jpg?_wi=2", imageAlt: "Emily Chen"},
|
||||
]}
|
||||
cardTitle="Over 5,000 satisfied customers love our NewRacksStylez collection"
|
||||
cardTitle="Over 5,000 satisfied Christian customers love our NewRacksStylez faith-based collection"
|
||||
cardTag="See what they say"
|
||||
cardTagIcon={Star}
|
||||
cardAnimation="slide-up"
|
||||
@@ -249,9 +249,9 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Shop", items: [
|
||||
{ label: "Hoodies", href: "#products" },
|
||||
{ label: "Shirts", href: "#products" },
|
||||
{ label: "Pants", href: "#products" },
|
||||
{ label: "Faith Hoodies", href: "#products" },
|
||||
{ label: "Christian Shirts", href: "#products" },
|
||||
{ label: "Faith Pants", href: "#products" },
|
||||
{ label: "New Arrivals", href: "#products" },
|
||||
],
|
||||
},
|
||||
@@ -280,7 +280,7 @@ export default function LandingPage() {
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 NewRacksStylez. All rights reserved."
|
||||
bottomRightText="Crafted with style and quality"
|
||||
bottomRightText="Faith-Based Premium Fashion"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user