4 Commits

Author SHA1 Message Date
10ea468218 Update src/app/page.tsx 2026-04-17 09:10:52 +00:00
68c6c4131f Merge version_6 into main
Merge version_6 into main
2026-04-17 08:55:48 +00:00
c2e223a150 Merge version_6 into main
Merge version_6 into main
2026-04-17 08:54:01 +00:00
5c32319d4b Merge version_6 into main
Merge version_6 into main
2026-04-17 08:50:12 +00:00

View File

@@ -10,7 +10,7 @@ import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
import { CheckCircle, Eye, Filter, Phone, Search, Star, MapPin } from "lucide-react";
import { CheckCircle, Eye, Filter, Phone, Search, Star, MapPin, Building2, Hotel } from "lucide-react";
export default function LandingPage() {
return (
@@ -74,9 +74,19 @@ export default function LandingPage() {
]}
/>
<div className="flex justify-center p-8 border-t border-b bg-muted/20">
<div className="w-full max-w-4xl h-[400px] bg-slate-200 rounded-xl flex flex-col items-center justify-center p-6 text-center shadow-inner">
<h3 className="text-xl font-bold mb-2"></h3>
<p className="text-muted-foreground"></p>
<div className="w-full max-w-4xl h-[400px] bg-slate-200 rounded-xl flex flex-col items-center justify-center p-6 text-center shadow-inner relative">
<h3 className="text-xl font-bold mb-4">Interaktīvā Karte</h3>
<div className="grid grid-cols-2 gap-4 w-full">
<div className="flex items-center justify-center gap-2 bg-white/50 p-4 rounded-lg shadow-sm border border-white/20">
<Hotel className="w-5 h-5 text-primary" />
<span className="font-semibold">Motelis: "Sunset View"</span>
</div>
<div className="flex items-center justify-center gap-2 bg-white/50 p-4 rounded-lg shadow-sm border border-white/20">
<Building2 className="w-5 h-5 text-primary" />
<span className="font-semibold">Viesnīca: "Grand City"</span>
</div>
</div>
<p className="text-muted-foreground mt-8">Izpēti vairāk tieši kartē</p>
</div>
</div>
</div>