Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d84f442a09 | |||
| 3e2c17382c | |||
| 46c720ef44 | |||
| 3ff8a1bba6 | |||
| 3dbdffdd9d | |||
| cfbc941264 | |||
| 694d8fc198 | |||
| c4e1affca8 | |||
| ac33451c5b |
@@ -46,7 +46,7 @@ export default function LandingPage() {
|
|||||||
logoText="OXING Wear"
|
logoText="OXING Wear"
|
||||||
description="Elegância e qualidade em cada costura. Camisas masculinas premium feitas para quem sabe se vestir bem."
|
description="Elegância e qualidade em cada costura. Camisas masculinas premium feitas para quem sabe se vestir bem."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Ver Coleção", href: "#products" },
|
{ text: "Ver Coleção", href: "/products" },
|
||||||
{ text: "Sobre Nós", href: "#about" },
|
{ text: "Sobre Nós", href: "#about" },
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/adorable-caucasian-lady-trendy-clothes-looking-away-while-posing-evening_197531-20766.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/adorable-caucasian-lady-trendy-clothes-looking-away-while-posing-evening_197531-20766.jpg"
|
||||||
@@ -96,9 +96,12 @@ export default function LandingPage() {
|
|||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardTwo
|
<ProductCardTwo
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="split-actions"
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
buttons={[
|
||||||
|
{ text: "Ver Tudo", href: "/products" }
|
||||||
|
]}
|
||||||
products={[
|
products={[
|
||||||
{ id: "p1", brand: "OXING", name: "Camisa Linho Slim", price: "R$ 159,90", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-using-laptop-computer-smart-phone-beautiful-student-girl-working-laptop-outdoor_1328-622.jpg" },
|
{ id: "p1", brand: "OXING", name: "Camisa Linho Slim", price: "R$ 159,90", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-using-laptop-computer-smart-phone-beautiful-student-girl-working-laptop-outdoor_1328-622.jpg" },
|
||||||
{ id: "p2", brand: "OXING", name: "Camisa Social Classic", price: "R$ 149,90", rating: 4, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/stylish-tall-arabian-man-model-white-shirt-sunglasses-posed-elevator-inside_627829-2547.jpg" },
|
{ id: "p2", brand: "OXING", name: "Camisa Social Classic", price: "R$ 149,90", rating: 4, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/stylish-tall-arabian-man-model-white-shirt-sunglasses-posed-elevator-inside_627829-2547.jpg" },
|
||||||
@@ -156,7 +159,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
title: "OXING Wear", items: [
|
title: "OXING Wear", items: [
|
||||||
{ label: "Sobre", href: "#about" },
|
{ label: "Sobre", href: "#about" },
|
||||||
{ label: "Produtos", href: "#products" },
|
{ label: "Produtos", href: "/products" },
|
||||||
{ label: "Contato", href: "#contact" }
|
{ label: "Contato", href: "#contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
60
src/app/products/page.tsx
Normal file
60
src/app/products/page.tsx
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
|
|
||||||
|
export default function ProductsPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="directional-hover"
|
||||||
|
defaultTextAnimation="reveal-blur"
|
||||||
|
borderRadius="soft"
|
||||||
|
contentWidth="mediumSmall"
|
||||||
|
sizing="largeSmall"
|
||||||
|
background="aurora"
|
||||||
|
cardStyle="gradient-mesh"
|
||||||
|
primaryButtonStyle="double-inset"
|
||||||
|
secondaryButtonStyle="radial-glow"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
navItems={[
|
||||||
|
{ name: "Início", id: "/" },
|
||||||
|
{ name: "Produtos", id: "/products" },
|
||||||
|
]}
|
||||||
|
brandName="OXING Wear"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="products" data-section="products" style={{ marginTop: "100px" }}>
|
||||||
|
<ProductCardTwo
|
||||||
|
title="Nossa Coleção Completa"
|
||||||
|
description="Explore nossa linha premium de camisas."
|
||||||
|
gridVariant="three-columns-all-equal-width"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
textboxLayout="default"
|
||||||
|
products={[
|
||||||
|
{ id: "p1", brand: "OXING", name: "Camisa Linho Slim", price: "R$ 159,90", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-using-laptop-computer-smart-phone-beautiful-student-girl-working-laptop-outdoor_1328-622.jpg" },
|
||||||
|
{ id: "p2", brand: "OXING", name: "Camisa Social Classic", price: "R$ 149,90", rating: 4, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/stylish-tall-arabian-man-model-white-shirt-sunglasses-posed-elevator-inside_627829-2547.jpg" },
|
||||||
|
{ id: "p3", brand: "OXING", name: "Camisa Algodão Premium", price: "R$ 169,90", rating: 5, reviewCount: "20", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-outdoors_23-2149080896.jpg" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterSimple
|
||||||
|
columns={[]}
|
||||||
|
bottomLeftText="© 2025 OXING Wear."
|
||||||
|
bottomRightText="Goiânia - GO"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user