15 Commits

Author SHA1 Message Date
92eb32598a Merge version_4 into main
Merge version_4 into main
2026-02-14 10:57:38 +00:00
e7e73b4ee0 Update src/app/shop/page.tsx 2026-02-14 10:57:34 +00:00
145005069f Update src/app/shop/[id]/page.tsx 2026-02-14 10:57:33 +00:00
2de7d8d15f Update src/app/products/page.tsx 2026-02-14 10:57:32 +00:00
43d24fa54a Update src/app/page.tsx 2026-02-14 10:57:32 +00:00
625b0d1a58 Update src/app/layout.tsx 2026-02-14 10:57:31 +00:00
3bcb3a227a Update src/app/blog/page.tsx 2026-02-14 10:57:30 +00:00
3db93c2017 Merge version_3 into main
Merge version_3 into main
2026-02-14 10:57:08 +00:00
291de0c02c Update src/app/shop/page.tsx 2026-02-14 10:57:04 +00:00
15b2fb4b3d Update src/app/shop/[id]/page.tsx 2026-02-14 10:57:03 +00:00
3e5a022610 Add src/app/services/page.tsx 2026-02-14 10:57:02 +00:00
c7f97f2d6e Update src/app/products/page.tsx 2026-02-14 10:57:01 +00:00
113a9ea768 Update src/app/page.tsx 2026-02-14 10:57:01 +00:00
66039546d3 Update src/app/blog/page.tsx 2026-02-14 10:57:00 +00:00
2337bef4ac Merge version_2 into main
Merge version_2 into main
2026-02-14 10:47:45 +00:00
7 changed files with 140 additions and 6 deletions

View File

@@ -34,6 +34,7 @@ export default function BlogPage() {
{ 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" }}
@@ -98,4 +99,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -1262,4 +1262,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -37,6 +37,7 @@ export default function TallinnOldTownPage() {
{ 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" }}
@@ -300,4 +301,4 @@ export default function TallinnOldTownPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -41,6 +41,7 @@ export default function ProductsPage() {
{ name: "History", id: "history" },
{ name: "Events", id: "events" },
{ name: "Plan Your Visit", id: "faq" },
{ name: "Services", id: "/services" },
{ name: "Products", id: "/products" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
@@ -112,6 +113,7 @@ export default function ProductsPage() {
{ name: "History", id: "history" },
{ name: "Events", id: "events" },
{ name: "Plan Your Visit", id: "faq" },
{ name: "Services", id: "/services" },
{ name: "Products", id: "/products" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
@@ -165,4 +167,4 @@ export default function ProductsPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

125
src/app/services/page.tsx Normal file
View 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>
);
}

View File

@@ -91,6 +91,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "History", id: "history" },
{ name: "Events", id: "events" },
{ name: "Plan Your Visit", id: "faq" },
{ name: "Services", id: "/services" },
{ name: "Products", id: "/products" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -163,6 +164,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "History", id: "history" },
{ name: "Events", id: "events" },
{ name: "Plan Your Visit", id: "faq" },
{ name: "Services", id: "/services" },
{ name: "Products", id: "/products" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -242,6 +244,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "History", id: "history" },
{ name: "Events", id: "events" },
{ name: "Plan Your Visit", id: "faq" },
{ name: "Services", id: "/services" },
{ name: "Products", id: "/products" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -320,4 +323,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -41,6 +41,7 @@ export default function ShopPage() {
{ name: "History", id: "history" },
{ name: "Events", id: "events" },
{ name: "Plan Your Visit", id: "faq" },
{ name: "Services", id: "/services" },
{ name: "Products", id: "/products" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
@@ -112,6 +113,7 @@ export default function ShopPage() {
{ name: "History", id: "history" },
{ name: "Events", id: "events" },
{ name: "Plan Your Visit", id: "faq" },
{ name: "Services", id: "/services" },
{ name: "Products", id: "/products" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
@@ -165,4 +167,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}