diff --git a/src/app/hotel-contact/page.tsx b/src/app/hotel-contact/page.tsx
new file mode 100644
index 0000000..a69633e
--- /dev/null
+++ b/src/app/hotel-contact/page.tsx
@@ -0,0 +1,75 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import ContactCTA from "@/components/sections/contact/ContactCTA";
+import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
+import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
+import { useState } from "react";
+
+export default function HotelContactPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 620bb57..059db22 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -6,7 +6,7 @@ import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
-import { CheckCircle, Filter, MapPin, Search, Star, ZoomIn, ZoomOut, Search as SearchIcon, Info } from "lucide-react";
+import { CheckCircle, Filter, MapPin, Search, Star, Search as SearchIcon } from "lucide-react";
import { useState, useMemo } from "react";
export default function LandingPage() {
@@ -16,8 +16,8 @@ export default function LandingPage() {
const [minRating, setMinRating] = useState(0);
const allHotels = [
- { id: "grand-city", name: "Grand City", price: 120, rating: 5, top: "33%", left: "25%", description: "Lieliska viesnīca pilsētas centrā ar skatu uz parku.", amenities: ["Wifi", "Pool"] },
- { id: "sunset-view", name: "Sunset View", price: 85, rating: 4, top: "75%", left: "66%", description: "Mājīga vieta pie jūras ar brīnišķīgiem saulrietiem.", amenities: ["Wifi", "Beach Access"] }
+ { id: "grand-city", name: "Grand City", price: 120, rating: 5, top: "33%", left: "25%" },
+ { id: "sunset-view", name: "Sunset View", price: 85, rating: 4, top: "75%", left: "66%" }
];
const filteredHotels = useMemo(() => {
@@ -48,7 +48,8 @@ export default function LandingPage() {
{ name: "Meklēt", id: "search" },
{ name: "Galamērķi", id: "destinations" },
{ name: "Atsauksmes", id: "features" },
- { name: "Kontakti", id: "footer" }
+ { name: "Kontakti", id: "footer" },
+ { name: "Rezervācijas & Kontakti", id: "/hotel-contact" }
]}
/>
@@ -99,14 +100,6 @@ export default function LandingPage() {
-
-
Redzamās viesnīcas:
- {filteredHotels.map(h => (
-
- {h.name} - €{h.price}
-
- ))}
-
-
- {filteredHotels.map((city) => (
-
setSelectedCity(selectedCity === city.id ? null : city.id)}
- >
-
-
-
-
- ))}
-
@@ -175,4 +154,4 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}