Update src/app/units/page.tsx
This commit is contained in:
@@ -8,21 +8,40 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
|
||||
export default function UnitsPage() {
|
||||
return (
|
||||
<ThemeProvider borderRadius="rounded" contentWidth="compact" sizing="largeSmallSizeMediumTitles">
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay navItems={[{name: "Anasayfa", id: "/"}, {name: "Üniteler", id: "/units"}]} brandName="LinguaTR" />
|
||||
<div className="pt-32 pb-20">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay navItems={[{name: "Anasayfa", id: "/"}, {name: "Üniteler", id: "/units"}]} brandName="LinguaTR" />
|
||||
</div>
|
||||
<div id="products" data-section="products" className="pt-32 pb-20">
|
||||
<ProductCardTwo
|
||||
title="Mevcut Üniteler"
|
||||
description="Başlamak istediğiniz üniteyi seçin."
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "u1", name: "A1 Unit 1", price: "Başla", imageSrc: "http://img.b2bpic.net/free-photo/3d-character-emerging-from-smartphone_23-2151336577.jpg", onProductClick: () => window.location.href = "/units/a1-unit-1" }
|
||||
{ id: "u1", brand: "A1", name: "Unit 1", price: "Başla", rating: 5, reviewCount: "10", imageSrc: "http://img.b2bpic.net/free-photo/3d-character-emerging-from-smartphone_23-2151336577.jpg", onProductClick: () => window.location.href = "/units/a1-unit-1" },
|
||||
{ id: "u2", brand: "A1", name: "Unit 2", price: "Başla", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/3d-character-emerging-from-smartphone_23-2151336577.jpg", onProductClick: () => window.location.href = "/units/a1-unit-2" },
|
||||
{ id: "u3", brand: "A1", name: "Unit 3", price: "Başla", rating: 5, reviewCount: "5", imageSrc: "http://img.b2bpic.net/free-photo/3d-character-emerging-from-smartphone_23-2151336577.jpg", onProductClick: () => window.location.href = "/units/a1-unit-3" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<FooterBaseCard logoText="LinguaTR" columns={[]} />
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard logoText="LinguaTR" columns={[]} />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user