Merge version_1 into main #5

Merged
bender merged 5 commits from version_1 into main 2026-03-03 19:16:44 +00:00
5 changed files with 1387 additions and 20 deletions

View File

@@ -62,7 +62,7 @@ export default function AboutPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="STREETWEAR CO."
brandName="UNREST"
button={{ text: "Cart", href: "/cart" }}
animateOnLoad={true}
/>
@@ -98,7 +98,7 @@ export default function AboutPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={footerColumns}
logoText="STREETWEAR CO."
logoText="UNREST"
/>
</div>
</ThemeProvider>

View File

@@ -62,7 +62,7 @@ export default function ContactPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="STREETWEAR CO."
brandName="UNREST"
button={{ text: "Cart", href: "/cart" }}
animateOnLoad={true}
/>
@@ -112,7 +112,7 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={footerColumns}
logoText="STREETWEAR CO."
logoText="UNREST"
/>
</div>
</ThemeProvider>

File diff suppressed because it is too large Load Diff

View File

@@ -66,7 +66,7 @@ export default function HomePage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="STREETWEAR CO."
brandName="UNREST"
button={{ text: "Cart", href: "/cart" }}
animateOnLoad={true}
/>
@@ -74,7 +74,7 @@ export default function HomePage() {
<div id="hero" data-section="hero">
<HeroLogo
logoText="STREETWEAR CO."
logoText="UNREST"
description="Bold. Artistic. Unapologetic. Curated streetwear for the urban collective."
buttons={[
{ text: "Shop Now", href: "/shop" },
@@ -101,13 +101,13 @@ export default function HomePage() {
gridVariant="three-columns-all-equal-width"
products={[
{
id: "1", brand: "STREETWEAR CO.", name: "Baggy Jeans", price: "R599", rating: 5,
id: "1", brand: "UNREST", name: "Baggy Jeans", price: "R599", rating: 5,
reviewCount: "142", imageSrc: "http://img.b2bpic.net/free-photo/vertical-photo-young-lady-leaning-wall-tunnel_114579-92564.jpg?_wi=1", imageAlt: "Oversized baggy jeans with artistic prints"},
{
id: "2", brand: "STREETWEAR CO.", name: "Long Sleeve Shirt", price: "R399", rating: 5,
id: "2", brand: "UNREST", name: "Long Sleeve Shirt", price: "R399", rating: 5,
reviewCount: "98", imageSrc: "http://img.b2bpic.net/free-vector/simple-symmetrical-design-black-background_1040-1214.jpg", imageAlt: "Premium long sleeve shirt with detailed graphics"},
{
id: "3", brand: "STREETWEAR CO.", name: "T-Shirt Premium", price: "R299", rating: 5,
id: "3", brand: "UNREST", name: "T-Shirt Premium", price: "R299", rating: 5,
reviewCount: "176", imageSrc: "http://img.b2bpic.net/free-vector/pride-day-lettering_23-2148514310.jpg?_wi=1", imageAlt: "Artistic print t-shirt classic cut"},
]}
/>
@@ -170,7 +170,7 @@ export default function HomePage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={footerColumns}
logoText="STREETWEAR CO."
logoText="UNREST"
/>
</div>
</ThemeProvider>

View File

@@ -62,7 +62,7 @@ export default function ShopPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="STREETWEAR CO."
brandName="UNREST"
button={{ text: "Cart", href: "/cart" }}
animateOnLoad={true}
/>
@@ -79,16 +79,16 @@ export default function ShopPage() {
gridVariant="four-items-2x2-equal-grid"
products={[
{
id: "baggy-jeans", brand: "STREETWEAR CO.", name: "Oversized Baggy Jeans", price: "R599", rating: 5,
id: "baggy-jeans", brand: "UNREST", name: "Oversized Baggy Jeans", price: "R599", rating: 5,
reviewCount: "142", imageSrc: "http://img.b2bpic.net/free-photo/vertical-photo-young-lady-leaning-wall-tunnel_114579-92564.jpg?_wi=3", imageAlt: "Baggy jeans with fingerprint graphic print"},
{
id: "long-sleeve", brand: "STREETWEAR CO.", name: "Knife Graphic Long Sleeve", price: "R399", rating: 5,
id: "long-sleeve", brand: "UNREST", name: "Knife Graphic Long Sleeve", price: "R399", rating: 5,
reviewCount: "98", imageSrc: "http://img.b2bpic.net/free-vector/poster-design-with-mechanic-girl_1284-52594.jpg", imageAlt: "White long sleeve with artistic knife illustration"},
{
id: "tshirt-one", brand: "STREETWEAR CO.", name: "Graphic T-Shirt V1", price: "R299", rating: 5,
id: "tshirt-one", brand: "UNREST", name: "Graphic T-Shirt V1", price: "R299", rating: 5,
reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-vector/pride-day-lettering_23-2148514310.jpg?_wi=2", imageAlt: "Oversized graphic t-shirt with artistic print"},
{
id: "tshirt-two", brand: "STREETWEAR CO.", name: "Statement T-Shirt V2", price: "R299", rating: 5,
id: "tshirt-two", brand: "UNREST", name: "Statement T-Shirt V2", price: "R299", rating: 5,
reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-vector/pride-day-lettering_23-2148514310.jpg?_wi=3", imageAlt: "Black t-shirt with bold artistic graphic"},
]}
/>
@@ -121,7 +121,7 @@ export default function ShopPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={footerColumns}
logoText="STREETWEAR CO."
logoText="UNREST"
/>
</div>
</ThemeProvider>