Add src/app/discover-tours/page.tsx
This commit is contained in:
66
src/app/discover-tours/page.tsx
Normal file
66
src/app/discover-tours/page.tsx
Normal file
@@ -0,0 +1,66 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
||||
import { MapPin, Calendar, Clock, Star } from "lucide-react";
|
||||
|
||||
export default function DiscoverToursPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="noise"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Ana Səhifə", id: "hero" },
|
||||
{ name: "Haqqımızda", id: "about" },
|
||||
{ name: "Təcrübələr", id: "features" },
|
||||
{ name: "Discover Tours", id: "tours" },
|
||||
{ name: "Rezervasiya", id: "contact" },
|
||||
]}
|
||||
brandName="Old Garden"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="tours" data-section="features">
|
||||
<FeatureBorderGlow
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
title="Discover Tours"
|
||||
description="İçərişəhərin gizli xəzinələrini və tarixi abidələrini bizimlə kəşf edin. Peşəkar bələdçilərimizlə unudulmaz anlar sizi gözləyir."
|
||||
features={[
|
||||
{ icon: MapPin, title: "İçərişəhər Turu", description: "Qədim qala divarları və tarixi küçələri gəzin." },
|
||||
{ icon: Calendar, title: "Mədəniyyət Proqramı", description: "Azərbaycanın zəngin mədəniyyəti ilə tanış olun." },
|
||||
{ icon: Clock, title: "Gurme Səyahət", description: "Ənənəvi mətbəximizin dadlarına baxın." },
|
||||
{ icon: Star, title: "VİP Turlar", description: "Şəxsi bələdçi ilə fərdi və konforlu turlar." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{ title: "Menyu", items: [{ label: "Ana Səhifə", href: "/" }, { label: "Təcrübələr", href: "/#features" }] },
|
||||
{ title: "Əlaqə", items: [{ label: "Rezervasiya", href: "/#contact" }] },
|
||||
]}
|
||||
logoText="Old Garden Baku"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user