Switch to version 1: remove src/app/pricing/page.tsx
This commit is contained in:
@@ -1,58 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function PricingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="largeSmall"
|
||||
background="fluid"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Domov", id: "/" },
|
||||
{ name: "Storitve", id: "/#features" },
|
||||
{ name: "Cenik", id: "/pricing" },
|
||||
{ name: "Kontakt", id: "/#contact" },
|
||||
]}
|
||||
brandName="ART Kozmetika"
|
||||
/>
|
||||
<div className="pt-20">
|
||||
<PricingCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
title="Naš cenik"
|
||||
description="Pregled vseh storitev za vašo popolno nego."
|
||||
plans={[
|
||||
{ id: "facial", badge: "Obraz", price: "od 40 €", subtitle: "Facial Care", features: ["Globinsko čiščenje", "Piling", "Hidratacija", "Masaža obraza"] },
|
||||
{ id: "waxing", badge: "Depilacija", price: "od 15 €", subtitle: "Waxing", features: ["Noge", "Roke", "Obraz", "Hrbet"] },
|
||||
{ id: "lifting", badge: "Lifting", price: "od 80 €", subtitle: "Specialized Lifting", features: ["Radiofrekvenca", "Ultrazvočni lifting", "Kavitacija"] },
|
||||
{ id: "nails", badge: "Nohti", price: "od 25 €", subtitle: "Manicure", features: ["Klasična manikura", "Geliranje", "Poslikave"] },
|
||||
{ id: "exclusive", badge: "Ekskluzivno", price: "od 200 €", subtitle: "Exclusive Programs", features: ["Celostna prenova", "Premium paketi", "VIP svetovanje"] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<FooterBaseCard
|
||||
logoText="ART Kozmetika"
|
||||
columns={[
|
||||
{ title: "Storitve", items: [{ label: "Facial Care", href: "#" }, { label: "Waxing", href: "#" }] },
|
||||
{ title: "Kontakt", items: [{ label: "Email", href: "/#contact" }, { label: "Telefon", href: "/#contact" }] },
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user