Important info
CI/CD Deploy / test (push) Successful in 2m54s
CI/CD Deploy / build-push (push) Successful in 1m53s
CI/CD Deploy / deploy (push) Successful in 33s

This commit is contained in:
Antoni Nuñez Romeu
2026-09-02 23:38:03 +02:00
parent a5538f0b9f
commit 8e63b859a3
5 changed files with 61 additions and 14 deletions
+4 -1
View File
@@ -28,7 +28,10 @@ const HotelSection = () => {
<h2 className="font-display text-4xl md:text-5xl lg:text-7xl break-words font-bold pt-4 pb-10 leading-[1.8] text-gradient">
{t("hotel.title")}
</h2>
<p className="text-muted-foreground max-w-2xl mx-auto">{t("hotel.subtitle")}</p>
<p className="text-muted-foreground max-w-2xl mx-auto mb-4">{t("hotel.subtitle")}</p>
<p className="text-sm text-primary font-medium bg-primary/5 inline-block px-3 py-1.5 rounded-full">
{t("info.hotelFullBoard")}
</p>
</motion.div>
<div className="grid sm:grid-cols-2 lg:grid-cols-3 gap-6 max-w-5xl mx-auto">
+13 -1
View File
@@ -1,5 +1,5 @@
import { motion } from "framer-motion";
import { EVENT_INFO, PRACTICAL_INFO } from "@/data/event-data";
import { EVENT_INFO, PRACTICAL_INFO, RECEPTION_INFO, EXTRA_NOTES } from "@/data/event-data";
import { MapPin, Plane, Train } from "lucide-react";
import { useTranslation } from "react-i18next";
@@ -109,6 +109,18 @@ const PracticalSection = () => {
})}
</div>
</div>
{/* Notas Festival */}
<div className="bg-card rounded-lg p-4 space-y-3 border border-primary/20">
<p className="text-sm text-foreground font-semibold">{t("info.reception")}</p>
<p className="text-xs text-muted-foreground">
{t("info.receptionHours")} · {RECEPTION_INFO.location}
</p>
<p className="text-xs text-muted-foreground">{t("info.noFullPass")}</p>
<p className="text-xs text-muted-foreground">{t("info.looseClass")}</p>
<p className="text-xs text-muted-foreground">{t("info.poolParties")}</p>
<p className="text-xs text-muted-foreground">{t("info.showsNight")}</p>
</div>
</motion.div>
</div>
</div>