2 Commits

Author SHA1 Message Date
6f35ca28ec Switch to version 1: modified src/app/page.tsx 2026-06-06 14:49:00 +00:00
87c2dc6a91 Merge version_2 into main
Merge version_2 into main
2026-06-06 14:46:18 +00:00

View File

@@ -11,8 +11,9 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { Building, HelpCircle, Quote, Sparkles, Star, BedDouble, Utensils, PartyPopper, Leaf } from "lucide-react"; import { Building, HelpCircle, Quote, Sparkles, Star, Users, BedDouble, Utensils, PartyPopper, Leaf } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -42,6 +43,8 @@ export default function LandingPage() {
name: "Dining & Rooms", id: "#dining-rooms"}, name: "Dining & Rooms", id: "#dining-rooms"},
{ {
name: "Rates", id: "#rates"}, name: "Rates", id: "#rates"},
{
name: "Our Team", id: "#team"},
{ {
name: "Testimonials", id: "#testimonials"}, name: "Testimonials", id: "#testimonials"},
{ {
@@ -192,6 +195,26 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="team" data-section="team">
<TeamCardFive
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
team={[
{
id: "t-1", name: "Chef Elena Petrova", role: "Head Chef", imageSrc: "http://img.b2bpic.net/free-photo/pleased-young-male-chef-wearing-uniform-smiling-with-closed-eyes-isolated-brown-background_141793-133505.jpg", imageAlt: "Portrait of Chef Elena Petrova"},
{
id: "t-2", name: "Ivan Volkov", role: "Hotel Manager", imageSrc: "http://img.b2bpic.net/free-photo/front-view-valet-suit-working_23-2150274534.jpg", imageAlt: "Portrait of Ivan Volkov, Hotel Manager"},
{
id: "t-3", name: "Maria Popovic", role: "Head Sommelier", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-holding-glass_23-2149428773.jpg", imageAlt: "Portrait of Maria Popovic, Head Sommelier"},
]}
title="Meet Our Dedicated Team"
description="Behind every exceptional experience at Moklište is a team of passionate professionals committed to making your stay and dining truly remarkable."
tag="Our People"
tagIcon={Users}
/>
</div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardOne <TestimonialCardOne
animationType="slide-up" animationType="slide-up"
@@ -301,6 +324,8 @@ export default function LandingPage() {
title: "About Moklište", items: [ title: "About Moklište", items: [
{ {
label: "Our Story", href: "#about"}, label: "Our Story", href: "#about"},
{
label: "Our Team", href: "#team"},
{ {
label: "Guest Reviews", href: "#testimonials"}, label: "Guest Reviews", href: "#testimonials"},
], ],