Add src/app/explore/page.tsx
This commit is contained in:
55
src/app/explore/page.tsx
Normal file
55
src/app/explore/page.tsx
Normal file
@@ -0,0 +1,55 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
|
||||
export default function ExplorePage() {
|
||||
const navLinks = [
|
||||
{ name: "Ana Sayfa", id: "/" },
|
||||
{ name: "Keşfet", id: "/explore" },
|
||||
{ name: "Hakkımızda", id: "/#about" },
|
||||
{ name: "İletişim", id: "/#contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="smallMedium"
|
||||
sizing="medium"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleFullscreen navItems={navLinks} brandName="Neşve Cafe" />
|
||||
<div className="pt-32 pb-16">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={false}
|
||||
title="Tüm Ürünlerimiz"
|
||||
description="Sultangazi'nin en sevilen lezzetlerini filtreleyerek keşfedin."
|
||||
products={[
|
||||
{ id: "1", name: "Türk Kahvesi", price: "₺45", imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-latte-wood-table-coffee-shop-cafe_1150-12757.jpg?_wi=1" },
|
||||
{ id: "2", name: "Americano", price: "₺55", imageSrc: "http://img.b2bpic.net/free-photo/confident-man-enjoying-cup-coffee-while-having-work-break-lunch-modern-restaurant-young-intelligent-man-entrepreneur-relaxing-indoors-cafe-looking-pensive_639032-2873.jpg?_wi=1" },
|
||||
{ id: "3", name: "Latte", price: "₺60", imageSrc: "http://img.b2bpic.net/free-photo/watercolor-coffee-cup-coffee-beans-illustration_23-2151720124.jpg" },
|
||||
{ id: "4", name: "Mocha", price: "₺65", imageSrc: "http://img.b2bpic.net/free-photo/two-glasses-white-chocolate-mocha-chocolate-mocha-with-whipped-cream_140725-10800.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<FooterMedia
|
||||
logoText="Neşve Cafe"
|
||||
columns={[{ title: "Bize Ulaşın", items: [{ label: "Eski Edirne Asf. No:540/A", href: "#" }] }]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user