2 Commits

Author SHA1 Message Date
5634378b91 Update src/app/page.tsx 2026-05-11 20:54:30 +00:00
5750e78062 Merge version_5 into main
Merge version_5 into main
2026-05-11 20:49:32 +00:00

View File

@@ -11,10 +11,21 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SplitAbout from '@/components/sections/about/SplitAbout'; import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Activity, Calendar, Coffee, MessageCircle, Scissors, ShoppingBag, TrendingUp } from "lucide-react"; import { Activity, Calendar, Coffee, MessageCircle, Scissors, ShoppingBag, TrendingUp, Languages } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
const t = (key: string) => key; // Stub for i18n translation hook const t = (key: string) => key;
const languageSelector = (
<div className="flex items-center gap-2 cursor-pointer">
<Languages size={18} />
<select className="bg-transparent cursor-pointer outline-none">
<option>EN</option>
<option>PT</option>
<option>ES</option>
</select>
</div>
);
return ( return (
<ThemeProvider <ThemeProvider
@@ -38,8 +49,12 @@ export default function LandingPage() {
{ name: t("Portafolio"), id: "portfolio" }, { name: t("Portafolio"), id: "portfolio" },
{ name: t("Contacto"), id: "contact" }, { name: t("Contacto"), id: "contact" },
]} ]}
brandName="ORYZO" brandName="ELEVATE"
/> />
{/* Language selector integrated into UI */}
<div className="fixed top-4 right-4 z-50 bg-white/80 backdrop-blur p-2 rounded-full shadow-sm text-sm">
{languageSelector}
</div>
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
@@ -49,7 +64,7 @@ export default function LandingPage() {
title={t("Los negocios locales merecen una presencia digital de clase mundial.")} title={t("Los negocios locales merecen una presencia digital de clase mundial.")}
description={t("Reimaginamos pequeños negocios y los convertimos en marcas extraordinarias para la era de la IA.")} description={t("Reimaginamos pequeños negocios y los convertimos en marcas extraordinarias para la era de la IA.")}
testimonials={[ testimonials={[
{ name: "Sarah Miller", handle: "@sarah_salon", testimonial: t("Mi clínica se veía obsoleta hasta que ORYZO la transformó. El aumento en conversiones fue inmediato."), rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-doctor-work_23-2149485515.jpg" }, { name: "Sarah Miller", handle: "@sarah_salon", testimonial: t("Mi clínica se veía obsoleta hasta que ELEVATE la transformó. El aumento en conversiones fue inmediato."), rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-doctor-work_23-2149485515.jpg" },
{ name: "John Doe", handle: "@johns_barber", testimonial: t("Todo el proceso fue mágico. Convirtieron nuestra pequeña tienda en un destino de lujo."), rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-man-with-wine-glass-night-club_23-2148037554.jpg" } { name: "John Doe", handle: "@johns_barber", testimonial: t("Todo el proceso fue mágico. Convirtieron nuestra pequeña tienda en un destino de lujo."), rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-man-with-wine-glass-night-club_23-2148037554.jpg" }
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/person-using-ar-technology-perform-their-occupation_23-2151137485.jpg" imageSrc="http://img.b2bpic.net/free-photo/person-using-ar-technology-perform-their-occupation_23-2151137485.jpg"
@@ -158,7 +173,7 @@ export default function LandingPage() {
{ title: t("Servicios"), items: [{ label: t("Estrategia"), href: "#" }, { label: t("Diseño Digital"), href: "#" }] }, { title: t("Servicios"), items: [{ label: t("Estrategia"), href: "#" }, { label: t("Diseño Digital"), href: "#" }] },
{ title: t("Ubicación"), items: [{ label: "Reino Unido", href: "#" }, { label: "España", href: "#" }, { label: "Portugal", href: "#" }, { label: "Brasil", href: "#" }] }, { title: t("Ubicación"), items: [{ label: "Reino Unido", href: "#" }, { label: "España", href: "#" }, { label: "Portugal", href: "#" }, { label: "Brasil", href: "#" }] },
]} ]}
bottomLeftText="© 2024 ORYZO AI." bottomLeftText="© 2024 ELEVATE AI."
bottomRightText={t("Creando experiencias digitales premium.")} bottomRightText={t("Creando experiencias digitales premium.")}
/> />
</div> </div>