Compare commits
14 Commits
version_7
...
version_12
| Author | SHA1 | Date | |
|---|---|---|---|
| b9132eac9d | |||
| 795aed6bad | |||
| 22c757d508 | |||
| d77808a4cf | |||
| 8f14eb59fe | |||
| af8deed88b | |||
| 5fc55450cc | |||
| 8528597e47 | |||
| e503f5975a | |||
| 0fbb47c625 | |||
| b51b3fb5b0 | |||
| bbe2203d48 | |||
| 61deae8c82 | |||
| 38369d9d81 |
@@ -28,7 +28,7 @@ export default function AboutPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Domov", id: "/" },
|
{ name: "Domov", id: "/" },
|
||||||
{ name: "Práca", id: "/#work" },
|
{ name: "Práca", id: "/#work" },
|
||||||
{ name: "Služby", id: "/#services" },
|
{ name: "Služby", id: "/services" },
|
||||||
{ name: "O nás", id: "/about" },
|
{ name: "O nás", id: "/about" },
|
||||||
{ name: "Kontakt", id: "/contact" }
|
{ name: "Kontakt", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
@@ -68,17 +68,17 @@ export default function AboutPage() {
|
|||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About", href: "/about" },
|
{ label: "About", href: "/about" },
|
||||||
{ label: "Services", href: "/#services" },
|
{ label: "Services", href: "/services" },
|
||||||
{ label: "Work", href: "/#work" },
|
{ label: "Work", href: "/#work" },
|
||||||
{ label: "Contact", href: "/contact" },
|
{ label: "Contact", href: "/contact" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Web Development", href: "/#" },
|
{ label: "Web Development", href: "/services" },
|
||||||
{ label: "SEO", href: "/#" },
|
{ label: "SEO", href: "/services" },
|
||||||
{ label: "Branding", href: "/#" },
|
{ label: "Branding", href: "/services" },
|
||||||
{ label: "UI/UX Design", href: "/#" },
|
{ label: "UI/UX Design", href: "/services" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,8 +3,9 @@
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
|
import { Mail, Phone, Instagram } from "lucide-react"; // Import Lucide icons
|
||||||
|
|
||||||
export default function ContactPage() {
|
export default function ContactPage() {
|
||||||
return (
|
return (
|
||||||
@@ -26,23 +27,53 @@ export default function ContactPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Domov", id: "/" },
|
{ name: "Domov", id: "/" },
|
||||||
{ name: "Práca", id: "/#work" },
|
{ name: "Práca", id: "/#work" },
|
||||||
{ name: "Služby", id: "/#services" },
|
{ name: "Služby", id: "/services" },
|
||||||
{ name: "O nás", id: "/about" },
|
{ name: "O nás", id: "/about" },
|
||||||
{ name: "Kontakt", id: "/contact" }
|
{ name: "Kontakt", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<ContactSplit
|
<ContactSplitForm
|
||||||
tag="Get in Touch"
|
title="Kontaktujte nás"
|
||||||
title="Let's Start Your Next Project"
|
description="Radi počujeme od vás! Vyplňte formulár nižšie a my sa vám čoskoro ozveme."
|
||||||
description="Tell us about your ideas, and we'll help you bring them to life. Reach out today for a consultation."
|
inputs={[
|
||||||
background={{ variant: "rotated-rays-animated" }}
|
{ name: "name", type: "text", placeholder: "Vaše meno", required: true },
|
||||||
mediaPosition="right"
|
{ name: "email", type: "email", placeholder: "Váš e-mail", required: true },
|
||||||
inputPlaceholder="Your Email Address"
|
{ name: "phone", type: "tel", placeholder: "Telefónne číslo (voliteľné)" }
|
||||||
|
]}
|
||||||
|
textarea={{ name: "message", placeholder: "Vaša správa", rows: 5, required: true }}
|
||||||
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp?_wi=2"
|
||||||
|
imageAlt="Contact us image"
|
||||||
|
buttonText="Odoslať správu"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
onSubmit={(email) => console.log("Contact form submitted with email:", email)}
|
mediaPosition="right"
|
||||||
|
onSubmit={(data) => console.log("Contact form submitted with data:", data)}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{/* New section for displaying contact details */}
|
||||||
|
<div id="contact-details" data-section="contact-details" className="py-16 lg:py-24 bg-card text-foreground flex flex-col items-center justify-center text-center px-4">
|
||||||
|
<h2 className="text-4xl lg:text-5xl font-semibold mb-8">Naše kontaktné údaje</h2>
|
||||||
|
<div className="flex flex-col md:flex-row gap-8 items-start md:items-center justify-center max-w-2xl w-full">
|
||||||
|
<div className="flex items-center gap-2 text-lg">
|
||||||
|
<Mail className="text-primary-cta" size={20} />
|
||||||
|
<a href="mailto:growwithsocial.tm@gmail.com" className="hover:underline">growwithsocial.tm@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div className="flex flex-col items-start gap-2 text-lg">
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Phone className="text-primary-cta" size={20} />
|
||||||
|
<a href="tel:+421911869922" className="hover:underline">0911869922</a>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-2 ml-7">
|
||||||
|
<a href="tel:+421944320697" className="hover:underline">0944320697</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-2 text-lg">
|
||||||
|
<Instagram className="text-primary-cta" size={20} />
|
||||||
|
<a href="https://www.instagram.com/growwithsocial.eu" target="_blank" rel="noopener noreferrer" className="hover:underline">@growwithsocial.eu</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<FooterBase
|
<FooterBase
|
||||||
logoText="Grow With Social"
|
logoText="Grow With Social"
|
||||||
copyrightText="© 2026 | Grow With Social"
|
copyrightText="© 2026 | Grow With Social"
|
||||||
@@ -50,17 +81,17 @@ export default function ContactPage() {
|
|||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About", href: "/about" },
|
{ label: "About", href: "/about" },
|
||||||
{ label: "Services", href: "/#services" },
|
{ label: "Services", href: "/services" },
|
||||||
{ label: "Work", href: "/#work" },
|
{ label: "Work", href: "/#work" },
|
||||||
{ label: "Contact", href: "/contact" },
|
{ label: "Contact", href: "/contact" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Web Development", href: "/#" },
|
{ label: "Web Development", href: "/services" },
|
||||||
{ label: "SEO", href: "/#" },
|
{ label: "SEO", href: "/services" },
|
||||||
{ label: "Branding", href: "/#" },
|
{ label: "Branding", href: "/services" },
|
||||||
{ label: "UI/UX Design", href: "/#" },
|
{ label: "UI/UX Design", href: "/services" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -33,10 +33,11 @@ export default function WebAgency2Page() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Grow With Social"
|
brandName="Grow With Social"
|
||||||
navItems={[
|
navItems={[
|
||||||
|
{ name: "Domov", id: "/" },
|
||||||
{ name: "Práca", id: "#work" },
|
{ name: "Práca", id: "#work" },
|
||||||
{ name: "Služby", id: "#services" },
|
{ name: "Služby", id: "#services" },
|
||||||
{ name: "O nás", id: "/about" },
|
{ name: "O nás", id: "/about" },
|
||||||
{ name: "Kontakt", id: "/contact" },
|
{ name: "Kontakt", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<HeroSplitDoubleCarousel
|
<HeroSplitDoubleCarousel
|
||||||
@@ -52,9 +53,9 @@ export default function WebAgency2Page() {
|
|||||||
leftCarouselItems={[
|
leftCarouselItems={[
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp?_wi=1", imageAlt: "UI UX Dizajn - Aplikácia Daily Life" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp?_wi=1", imageAlt: "UI UX Dizajn - Aplikácia Daily Life" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp?_wi=1", imageAlt: "UI UX Dizajn - SaaS platforma" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp?_wi=1", imageAlt: "UI UX Dizajn - SaaS platforma" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp", imageAlt: "UI UX Dizajn - Luminé starostlivosť o pleť" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp?_wi=1", imageAlt: "UI UX Dizajn - Luminé starostlivosť o pleť" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-7.webp", imageAlt: "UI UX Dizajn - Online kurzy" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-7.webp", imageAlt: "UI UX Dizajn - Online kurzy" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-9.webp", imageAlt: "UI UX Dizajn - Biznis kouč" }
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-9.webp?_wi=1", imageAlt: "UI UX Dizajn - Biznis kouč" }
|
||||||
]}
|
]}
|
||||||
rightCarouselItems={[
|
rightCarouselItems={[
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp?_wi=1", imageAlt: "UI UX Dizajn - Cestovanie Luxuria" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp?_wi=1", imageAlt: "UI UX Dizajn - Cestovanie Luxuria" },
|
||||||
@@ -77,13 +78,6 @@ export default function WebAgency2Page() {
|
|||||||
title: "SEO", description: "Optimalizujeme vašu webovú stránku, aby sa umiestnila vyššie vo vyhľadávačoch a generovala organickú návštevnosť.", bentoComponent: "marquee", centerIcon: Search,
|
title: "SEO", description: "Optimalizujeme vašu webovú stránku, aby sa umiestnila vyššie vo vyhľadávačoch a generovala organickú návštevnosť.", bentoComponent: "marquee", centerIcon: Search,
|
||||||
variant: "text", texts: ["Kľúčové slová", "Spätné odkazy", "Meta tagy", "Organická návštevnosť", "Poradie", "Analytika", "SERP", "Indexovanie"]
|
variant: "text", texts: ["Kľúčové slová", "Spätné odkazy", "Meta tagy", "Organická návštevnosť", "Poradie", "Analytika", "SERP", "Indexovanie"]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: "Vývoj webu", description: "Webové stránky na mieru, ktoré sú rýchle, responzívne a navrhnuté na konverziu.", bentoComponent: "media-stack", items: [
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp?_wi=1", imageAlt: "Webový projekt - Platforma AgentFlow AI" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp?_wi=1", imageAlt: "Webový projekt - Architektonické štúdio" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp?_wi=1", imageAlt: "Webový projekt - Summit Roofing" }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Budovanie značky", description: "Vytvorte si zapamätateľnú identitu značky, ktorá osloví vaše publikum.", bentoComponent: "media-stack", items: [
|
title: "Budovanie značky", description: "Vytvorte si zapamätateľnú identitu značky, ktorá osloví vaše publikum.", bentoComponent: "media-stack", items: [
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp?_wi=2", imageAlt: "Projekt značky 1" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp?_wi=2", imageAlt: "Projekt značky 1" },
|
||||||
@@ -107,6 +101,13 @@ export default function WebAgency2Page() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Marketing a reklama", description: "Komplexné marketingové a reklamné stratégie pre zvýšenie viditeľnosti, návštevnosti a konverzií.", bentoComponent: "line-chart"
|
title: "Marketing a reklama", description: "Komplexné marketingové a reklamné stratégie pre zvýšenie viditeľnosti, návštevnosti a konverzií.", bentoComponent: "line-chart"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Grafický dizajn", description: "Pútavý vizuálny obsah a materiály, ktoré oživia vašu značku.", bentoComponent: "media-stack", items: [
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp?_wi=1", imageAlt: "Grafický dizajn - UI UX Dizajn" },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp?_wi=2", imageAlt: "Grafický dizajn - Obal produktu" },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-9.webp?_wi=2", imageAlt: "Grafický dizajn - Brandové materiály" }
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -236,7 +237,7 @@ export default function WebAgency2Page() {
|
|||||||
}}
|
}}
|
||||||
positiveCard={{
|
positiveCard={{
|
||||||
items: [
|
items: [
|
||||||
"Vlastné návrhy prispôsobené vašej značke", "Bleskurýchly výkon na všetkých zariadeniach", "Vstavané SEO na zvýšenie organickej návštevnosti", "Moderný dizajn, ktorý buduje dôveru", "Vyhradená podpora a údržba"
|
"Vlastný dizajn loga pre silnú identitu", "Účinné reklamné kampane s preukázanými výsledkami", "Kreatívny grafický dizajn pre pôsobivé vizuály", "Profesionálne spravovanie sociálnych sietí pre angažovanosť", "Vyhradená podpora a údržba pre dlhodobý úspech"
|
||||||
]
|
]
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user