Switch to version 1: remove src/app/specialties/page.tsx

This commit is contained in:
2026-04-08 15:43:39 +00:00
parent 45b69257c3
commit c47faad4ff

View File

@@ -1,91 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function SpecialtiesPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="compact"
sizing="mediumLarge"
background="noiseDiagonalGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Startseite", id: "/" },
{ name: "Über uns", id: "/#about" },
{ name: "Spezialitäten", id: "/specialties" },
{ name: "Kontakt", id: "/#contact" },
]}
brandName="Cafe Lunette"
/>
</div>
<div id="menu" data-section="menu" style={{ paddingTop: "100px" }}>
<ProductCardTwo
animationType="slide-up"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
products={[
{
id: "p1", brand: "Kaffee", name: "Cappuccino", price: "€4,80", rating: 5,
reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/copy-smell-romantic-espresso-nice_1232-3947.jpg?_wi=2"},
{
id: "p2", brand: "Süßes", name: "Rote Samt Makaron", price: "€2,20", rating: 5,
reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/front-view-colorful-candies-with-cream-cakes-white-background-biscuit-sweet-cake-cookie-sugar_140725-109982.jpg?_wi=2"},
{
id: "p3", brand: "Dessert", name: "Brownie", price: "€2,50", rating: 5,
reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/chocolate-brownie-cake-dessert-slices-with-raspberries-spices-top-view_114579-8378.jpg?_wi=2"},
{
id: "p4", brand: "Tee", name: "Matcha Latte", price: "€4,50", rating: 4,
reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/woman-drinking-cup-matcha-green-tea-with-latte-art_140725-7120.jpg?_wi=2"},
{
id: "p5", brand: "Frühstück", name: "Croissant", price: "€2,50", rating: 5,
reviewCount: "67", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-croissant-flowers-plate_23-2149660920.jpg?_wi=2"},
{
id: "p6", brand: "Dessert", name: "Frucht-Törtchen", price: "€3,50", rating: 5,
reviewCount: "33", imageSrc: "http://img.b2bpic.net/free-photo/cake-donut-bakery-sweets-dessert-break-time_53876-16168.jpg?_wi=2"},
]}
title="Unsere Spezialitäten"
description="Genießen Sie unsere handverlesene Auswahl an Kaffee, Tee und hausgemachten Backwaren."
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Navigation", items: [
{ label: "Startseite", href: "/" },
{ label: "Über uns", href: "/#about" },
{ label: "Spezialitäten", href: "/specialties" },
],
},
{
title: "Rechtliches", items: [
{ label: "Impressum", href: "#" },
{ label: "Datenschutz", href: "#" },
{ label: "Cookies", href: "#" },
],
},
]}
logoText="Cafe Lunette"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}