Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f5ed81425b | |||
| ac0505dedc | |||
| feea6df475 | |||
| fbbd19fd33 | |||
| c3b77261c7 | |||
| f4fcac7a5e | |||
| 0fde115ac5 | |||
| 28dd0c8f50 | |||
| efd0fd4a99 | |||
| 07d89f9a86 | |||
| 6bb95a675e | |||
| a462ba1daf | |||
| f148344fbe | |||
| 80e9e4e6e1 | |||
| 8e01f4dc53 |
48
src/app/contact/page.tsx
Normal file
48
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,48 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="fluid"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Properties", id: "/#properties" },
|
||||
{ name: "Why Us", id: "/#why-us" },
|
||||
{ name: "Reviews", id: "/#reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName=""
|
||||
/>
|
||||
<div className="pt-32">
|
||||
<ContactSplit
|
||||
title="Contáctanos"
|
||||
description="¿Tienes dudas o necesitas ayuda? Envíanos un mensaje y te responderemos pronto."
|
||||
tag="Soporte"
|
||||
background={{ variant: "gradient-bars" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Enviar"
|
||||
onSubmit={(email) => window.location.href = `mailto:ricardo@garcessa.com?subject=Inquiry from ${email}`}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -69,32 +69,32 @@ export default function LandingPage() {
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cozy-lively-home-interior-design_23-2151119030.jpg?_wi=1",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bv6YtvLGteCKCFP415sKd0AOrs/uploaded-1775359431001-a2el8a22.png",
|
||||
imageAlt: "Smart Living Panama",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cozy-lively-home-interior-design_23-2151119030.jpg?_wi=2",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bv6YtvLGteCKCFP415sKd0AOrs/uploaded-1775358920266-czb1npog.png",
|
||||
imageAlt: "Smart Living Panama",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cozy-lively-home-interior-design_23-2151119030.jpg?_wi=3",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bv6YtvLGteCKCFP415sKd0AOrs/uploaded-1775359097601-a0z6ucgj.png",
|
||||
imageAlt: "Smart Living Panama",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cozy-lively-home-interior-design_23-2151119030.jpg?_wi=4",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bv6YtvLGteCKCFP415sKd0AOrs/uploaded-1775358424283-5u1ggdo5.png",
|
||||
imageAlt: "Smart Living Panama",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cozy-lively-home-interior-design_23-2151119030.jpg?_wi=5",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bv6YtvLGteCKCFP415sKd0AOrs/uploaded-1775359181941-0q7jcx0j.png",
|
||||
imageAlt: "Smart Living Panama",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cozy-lively-home-interior-design_23-2151119030.jpg?_wi=6",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bv6YtvLGteCKCFP415sKd0AOrs/uploaded-1775359119109-mmrj6444.png",
|
||||
imageAlt: "Smart Living Panama",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user