Merge version_2 into main #6

Merged
bender merged 3 commits from version_2 into main 2026-03-08 04:54:28 +00:00
3 changed files with 115 additions and 1392 deletions

94
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,94 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Heart } from 'lucide-react';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="medium"
background="noise"
cardStyle="soft-shadow"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Inspire Store"
navItems={[
{ name: "Início", id: "hero" },
{ name: "Coleções", id: "products" },
{ name: "Sobre", id: "/about" },
{ name: "Avaliações", id: "testimonials" },
{ name: "Contato", id: "contact" },
]}
button={{
text: "💬 WhatsApp", href: "https://wa.me/5151993108837"
}}
animateOnLoad={true}
/>
</div>
<div id="about" data-section="about">
<MetricSplitMediaAbout
tag="Sobre Nós"
tagIcon={Heart}
tagAnimation="slide-up"
title="Inspire Store - Moda Feminina em Novo Hamburgo"
description="A loja de roupa feminina em Novo Hamburgo perfeita para quem busca estilo, elegância e qualidade. Trabalhamos com roupas modernas e versáteis para o dia a dia ou ocasiões especiais, com atendimento atencioso e peças selecionadas com cuidado."
metrics={[
{ value: "4,8", title: "Avaliação no Google" },
{ value: "100%", title: "Satisfação de Clientes" },
]}
imageSrc="http://img.b2bpic.net/free-photo/preparation-bride-wedding-most-delicate-things_8353-9148.jpg?_wi=1"
imageAlt="Interior moderno da loja Inspire Store"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
useInvertedBackground={false}
ariaLabel="Seção sobre a Inspire Store"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/close-up-wool-texture-details_23-2149620438.jpg"
imageAlt="Textura de moda e elegância"
logoText="Inspire Store"
copyrightText="© 2025 Inspire Store - Moda Feminina em Novo Hamburgo"
columns={[
{
title: "Navegação", items: [
{ label: "Início", href: "#hero" },
{ label: "Coleções", href: "#products" },
{ label: "Sobre", href: "/about" },
],
},
{
title: "Contato", items: [
{ label: "WhatsApp", href: "https://wa.me/5151993108837" },
{ label: "R. Lima e Silva, 144", href: "#" },
{ label: "Novo Hamburgo, RS", href: "#" },
],
},
{
title: "Redes Sociais", items: [
{ label: "Instagram", href: "#" },
{ label: "Facebook", href: "#" },
{ label: "WhatsApp", href: "https://wa.me/5151993108837" },
],
},
]}
ariaLabel="Rodapé do site Inspire Store"
/>
</div>
</ThemeProvider>
);
}

File diff suppressed because it is too large Load Diff

View File

@@ -31,7 +31,7 @@ export default function LandingPage() {
navItems={[
{ name: "Início", id: "hero" },
{ name: "Coleções", id: "products" },
{ name: "Sobre", id: "about" },
{ name: "Sobre", id: "/about" },
{ name: "Avaliações", id: "testimonials" },
{ name: "Contato", id: "contact" },
]}
@@ -240,7 +240,7 @@ export default function LandingPage() {
title: "Navegação", items: [
{ label: "Início", href: "#hero" },
{ label: "Coleções", href: "#products" },
{ label: "Sobre", href: "#about" },
{ label: "Sobre", href: "/about" },
],
},
{