From 0d225a6fab18a7418c7ef7e0d2999a39415be555 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 02:08:25 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 110 +++++++++++++++++++++++++++++------------------ 1 file changed, 67 insertions(+), 43 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d882de5..ad31853 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; @@ -10,9 +10,9 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import FaqBase from '@/components/sections/faq/FaqBase'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Sparkles, Gift, Heart, Star, Leaf, Shield, Trophy, HelpCircle, Handshake, Zap } from 'lucide-react'; +import { Sparkles, Gift, Heart, Star, Leaf, Shield, Trophy, Handshake, HelpCircle, Zap, Egg } from 'lucide-react'; -export default function CatalogPage() { +export default function LandingPage() { return ( @@ -42,55 +42,61 @@ export default function CatalogPage() {
@@ -131,9 +137,18 @@ export default function CatalogPage() { features={[ { title: "Ingredientes Premium", description: "Selecionamos os melhores ingredientes, garantindo qualidade superior em cada ovo.", bentoComponent: "3d-stack-cards", items: [ - { icon: Leaf, title: "Natural", subtitle: "100% Ingredientes", detail: "Sem conservantes" }, - { icon: Shield, title: "Seguro", subtitle: "Certificado", detail: "Todas as normas" }, - { icon: Trophy, title: "Prêmios", subtitle: "Reconhecimento", detail: "Indústria" } + { + icon: Leaf, + title: "Natural", subtitle: "100% Ingredientes", detail: "Sem conservantes" + }, + { + icon: Shield, + title: "Seguro", subtitle: "Certificado", detail: "Todas as normas" + }, + { + icon: Trophy, + title: "Prêmios", subtitle: "Reconhecimento", detail: "Indústria" + } ] }, { @@ -141,9 +156,18 @@ export default function CatalogPage() { }, { title: "Características", description: "Receitas exclusivas que equilibram doçura e cremosidade perfeitas.", bentoComponent: "3d-task-list", items: [ - { icon: Sparkles, label: "Cremoso", time: "Textura" }, - { icon: Heart, label: "Artesanal", time: "Feito à Mão" }, - { icon: Zap, label: "Fresco", time: "Diário" } + { + icon: Sparkles, + label: "Cremoso", time: "Textura" + }, + { + icon: Heart, + label: "Artesanal", time: "Feito à Mão" + }, + { + icon: Zap, + label: "Fresco", time: "Diário" + } ] } ]} @@ -169,29 +193,29 @@ export default function CatalogPage() {
@@ -200,7 +224,7 @@ export default function CatalogPage() {
@@ -232,14 +256,14 @@ export default function CatalogPage() {