Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 291de0c02c | |||
| 15b2fb4b3d | |||
| 3e5a022610 | |||
| c7f97f2d6e | |||
| 113a9ea768 | |||
| 66039546d3 | |||
| 2337bef4ac |
@@ -34,6 +34,7 @@ export default function BlogPage() {
|
|||||||
{ name: "History", id: "history" },
|
{ name: "History", id: "history" },
|
||||||
{ name: "Events", id: "events" },
|
{ name: "Events", id: "events" },
|
||||||
{ name: "Plan Your Visit", id: "faq" },
|
{ name: "Plan Your Visit", id: "faq" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Products", id: "/products" }
|
{ name: "Products", id: "/products" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Get Started", href: "contact" }}
|
button={{ text: "Get Started", href: "contact" }}
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ export default function TallinnOldTownPage() {
|
|||||||
{ name: "History", id: "history" },
|
{ name: "History", id: "history" },
|
||||||
{ name: "Events", id: "events" },
|
{ name: "Events", id: "events" },
|
||||||
{ name: "Plan Your Visit", id: "faq" },
|
{ name: "Plan Your Visit", id: "faq" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Products", id: "/products" }
|
{ name: "Products", id: "/products" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Get Started", href: "contact" }}
|
button={{ text: "Get Started", href: "contact" }}
|
||||||
|
|||||||
@@ -41,6 +41,7 @@ export default function ProductsPage() {
|
|||||||
{ name: "History", id: "history" },
|
{ name: "History", id: "history" },
|
||||||
{ name: "Events", id: "events" },
|
{ name: "Events", id: "events" },
|
||||||
{ name: "Plan Your Visit", id: "faq" },
|
{ name: "Plan Your Visit", id: "faq" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Products", id: "/products" }
|
{ name: "Products", id: "/products" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||||
@@ -112,6 +113,7 @@ export default function ProductsPage() {
|
|||||||
{ name: "History", id: "history" },
|
{ name: "History", id: "history" },
|
||||||
{ name: "Events", id: "events" },
|
{ name: "Events", id: "events" },
|
||||||
{ name: "Plan Your Visit", id: "faq" },
|
{ name: "Plan Your Visit", id: "faq" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Products", id: "/products" }
|
{ name: "Products", id: "/products" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||||
|
|||||||
125
src/app/services/page.tsx
Normal file
125
src/app/services/page.tsx
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
|
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||||
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
|
import { Sparkles } from "lucide-react";
|
||||||
|
|
||||||
|
export default function ServicesPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="hover-bubble"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="soft"
|
||||||
|
contentWidth="mediumLarge"
|
||||||
|
sizing="medium"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="layered"
|
||||||
|
headingFontWeight="bold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleCentered
|
||||||
|
brandName="Tallinn Old Town"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "about" },
|
||||||
|
{ name: "Attractions", id: "attractions" },
|
||||||
|
{ name: "History", id: "history" },
|
||||||
|
{ name: "Events", id: "events" },
|
||||||
|
{ name: "Plan Your Visit", id: "faq" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Products", id: "/products" }
|
||||||
|
]}
|
||||||
|
button={{ text: "Get Started", href: "contact" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="services" data-section="services">
|
||||||
|
<FeatureCardTwelve
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
id: "guided-tours", label: "Guided Tours", title: "Expert-Led Historical Tours", items: [
|
||||||
|
"Small group tours with professional historians", "Customizable itineraries for all interests", "Multi-language tour options available", "Skip-the-line access to major attractions"
|
||||||
|
],
|
||||||
|
buttons: [
|
||||||
|
{ text: "Book a Tour", href: "/contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "accommodations", label: "Accommodations", title: "Curated Medieval Lodging", items: [
|
||||||
|
"Charming boutique hotels in historic buildings", "Authentic guesthouses with period details", "Luxury options with modern amenities", "Breakfast and welcome packages included"
|
||||||
|
],
|
||||||
|
buttons: [
|
||||||
|
{ text: "View Hotels", href: "/contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "cultural-experiences", label: "Cultural Experiences", title: "Immersive Estonian Heritage Programs", items: [
|
||||||
|
"Traditional craft workshops and demonstrations", "Local cuisine tasting experiences", "Medieval festival access and events", "Private cultural storytelling sessions"
|
||||||
|
],
|
||||||
|
buttons: [
|
||||||
|
{ text: "Explore Experiences", href: "/contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "photography-services", label: "Photography Services", title: "Professional Travel Photography", items: [
|
||||||
|
"Professional photoshoot locations scouting", "Day and sunset photography sessions", "Edited digital gallery delivery", "Group and family portrait packages"
|
||||||
|
],
|
||||||
|
buttons: [
|
||||||
|
{ text: "Book a Session", href: "/contact" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
animationType="opacity"
|
||||||
|
title="Our Services"
|
||||||
|
description="Discover comprehensive services designed to enhance your Tallinn Old Town experience"
|
||||||
|
tag="Services"
|
||||||
|
tagIcon={Sparkles}
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterMedia
|
||||||
|
imageSrc="https://img.b2bpic.net/free-photo/aerial-view-historical-center-lviv-ukraine_231208-68.jpg"
|
||||||
|
imageAlt="Tallinn Old Town sunset"
|
||||||
|
logoText="Tallinn Old Town"
|
||||||
|
copyrightText="© 2025 Tallinn Old Town | Preserving Medieval Heritage"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Explore", items: [
|
||||||
|
{ label: "Attractions", href: "attractions" },
|
||||||
|
{ label: "History", href: "history" },
|
||||||
|
{ label: "Events", href: "events" },
|
||||||
|
{ label: "Plan Visit", href: "faq" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Information", items: [
|
||||||
|
{ label: "About", href: "about" },
|
||||||
|
{ label: "Cultural Guide", href: "events" },
|
||||||
|
{ label: "Travel Tips", href: "events" },
|
||||||
|
{ label: "Testimonials", href: "testimonials" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Connect", items: [
|
||||||
|
{ label: "Contact Us", href: "contact" },
|
||||||
|
{ label: "Newsletter", href: "contact" },
|
||||||
|
{ label: "Visit Website", href: "https://www.visittallinn.ee" },
|
||||||
|
{ label: "Social Media", href: "https://www.instagram.com/visittallinn" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -91,6 +91,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
{ name: "History", id: "history" },
|
{ name: "History", id: "history" },
|
||||||
{ name: "Events", id: "events" },
|
{ name: "Events", id: "events" },
|
||||||
{ name: "Plan Your Visit", id: "faq" },
|
{ name: "Plan Your Visit", id: "faq" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Products", id: "/products" }
|
{ name: "Products", id: "/products" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
@@ -163,6 +164,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
{ name: "History", id: "history" },
|
{ name: "History", id: "history" },
|
||||||
{ name: "Events", id: "events" },
|
{ name: "Events", id: "events" },
|
||||||
{ name: "Plan Your Visit", id: "faq" },
|
{ name: "Plan Your Visit", id: "faq" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Products", id: "/products" }
|
{ name: "Products", id: "/products" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
@@ -242,6 +244,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
{ name: "History", id: "history" },
|
{ name: "History", id: "history" },
|
||||||
{ name: "Events", id: "events" },
|
{ name: "Events", id: "events" },
|
||||||
{ name: "Plan Your Visit", id: "faq" },
|
{ name: "Plan Your Visit", id: "faq" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Products", id: "/products" }
|
{ name: "Products", id: "/products" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
|
|||||||
@@ -41,6 +41,7 @@ export default function ShopPage() {
|
|||||||
{ name: "History", id: "history" },
|
{ name: "History", id: "history" },
|
||||||
{ name: "Events", id: "events" },
|
{ name: "Events", id: "events" },
|
||||||
{ name: "Plan Your Visit", id: "faq" },
|
{ name: "Plan Your Visit", id: "faq" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Products", id: "/products" }
|
{ name: "Products", id: "/products" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||||
@@ -112,6 +113,7 @@ export default function ShopPage() {
|
|||||||
{ name: "History", id: "history" },
|
{ name: "History", id: "history" },
|
||||||
{ name: "Events", id: "events" },
|
{ name: "Events", id: "events" },
|
||||||
{ name: "Plan Your Visit", id: "faq" },
|
{ name: "Plan Your Visit", id: "faq" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Products", id: "/products" }
|
{ name: "Products", id: "/products" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||||
|
|||||||
Reference in New Issue
Block a user