Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 294c7ab357 | |||
| 5634378b91 | |||
| 5750e78062 |
@@ -11,10 +11,21 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
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() {
|
||||
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 (
|
||||
<ThemeProvider
|
||||
@@ -38,8 +49,12 @@ export default function LandingPage() {
|
||||
{ name: t("Portafolio"), id: "portfolio" },
|
||||
{ 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 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.")}
|
||||
description={t("Reimaginamos pequeños negocios y los convertimos en marcas extraordinarias para la era de la IA.")}
|
||||
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" }
|
||||
]}
|
||||
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("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.")}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user