Compare commits
62 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ec6448b4d6 | |||
| e2629ae1c6 | |||
| eeda946015 | |||
| 363594589c | |||
| 5790095f2c | |||
| a06a3ca757 | |||
| 4a623aef1f | |||
| 8fcc63222b | |||
| a3b8a196e9 | |||
| ad69fdb378 | |||
| db4ad2d54b | |||
| 4e20e5b519 | |||
| 73c5ba8be4 | |||
| a6bb9cda37 | |||
| ffdbc96006 | |||
| 5156bc4a79 | |||
| b9132eac9d | |||
| 795aed6bad | |||
| 22c757d508 | |||
| d77808a4cf | |||
| 8f14eb59fe | |||
| af8deed88b | |||
| 5fc55450cc | |||
| 8528597e47 | |||
| e503f5975a | |||
| 0fbb47c625 | |||
| b51b3fb5b0 | |||
| bbe2203d48 | |||
| 61deae8c82 | |||
| 9b095b27d3 | |||
| 38369d9d81 | |||
| 9b1931c428 | |||
| da2cfd6f68 | |||
| a4d1110d89 | |||
| bbf8d7cc3a | |||
| 4908d53add | |||
| 1721d1e5f5 | |||
| dbdc4578db | |||
| 634cf5d172 | |||
| 3b859cc820 | |||
| acf0671c90 | |||
| b830d529aa | |||
| 60fce4edab | |||
| e521af213c | |||
| eae8666fde | |||
| 9f10b7a804 | |||
| 605864ed4a | |||
| 0b63aa68bb | |||
| bdd595325d | |||
| a8a4165394 | |||
| f64515389b | |||
| 67b6bee05c | |||
| a603b191d8 | |||
| 63ddb2d2bc | |||
| fd5a0205c5 | |||
| 22c5d602ed | |||
| 69041b5cf3 | |||
| 3ec5e59ebe | |||
| 39e978cbfe | |||
| 67297156fa | |||
| 69a188d942 | |||
| bb13f4eadc |
@@ -4,11 +4,46 @@ 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 AboutMetric from "@/components/sections/about/AboutMetric";
|
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||||
import TeamCardOne from "@/components/sections/team/TeamCardOne";
|
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import { Clock, Sparkles, Star } from "lucide-react";
|
import { Clock, Sparkles, Star } from "lucide-react";
|
||||||
|
|
||||||
export default function AboutPage() {
|
export default function AboutPage() {
|
||||||
|
const commonNavItems = [
|
||||||
|
{ name: "Domov", id: "/" },
|
||||||
|
{ name: "Práca", id: "/#work" },
|
||||||
|
{ name: "Služby", id: "/services" },
|
||||||
|
{ name: "O nás", id: "/about" },
|
||||||
|
{ name: "Kontakt", id: "/contact" }
|
||||||
|
];
|
||||||
|
|
||||||
|
const commonFooterColumnsEnglish = [
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{ label: "About", href: "/about" },
|
||||||
|
{ label: "Services", href: "/services" },
|
||||||
|
{ label: "Work", href: "/#work" },
|
||||||
|
{ label: "Contact", href: "/contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Services", items: [
|
||||||
|
{ label: "Web Development", href: "/services" },
|
||||||
|
{ label: "SEO", href: "/services" },
|
||||||
|
{ label: "Branding", href: "/services" },
|
||||||
|
{ label: "UI/UX Design", href: "/services" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Connect", items: [
|
||||||
|
{ label: "Twitter", href: "/#" },
|
||||||
|
{ label: "LinkedIn", href: "/#" },
|
||||||
|
{ label: "Instagram", href: "/#" },
|
||||||
|
{ label: "Dribbble", href: "/#" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="text-stagger"
|
||||||
@@ -25,14 +60,7 @@ export default function AboutPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Grow With Social"
|
brandName="Grow With Social"
|
||||||
navItems={[
|
navItems={commonNavItems}
|
||||||
{ name: "Home", id: "/" },
|
|
||||||
{ name: "Work", id: "/#work" },
|
|
||||||
{ name: "Services", id: "/#services" },
|
|
||||||
{ name: "About", id: "/about" },
|
|
||||||
{ name: "Contact", id: "/contact" }
|
|
||||||
]}
|
|
||||||
button={{ text: "Get Started", href: "/contact" }}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<AboutMetric
|
<AboutMetric
|
||||||
@@ -46,53 +74,14 @@ export default function AboutPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<TeamCardOne
|
|
||||||
title="Meet Our Talented Team"
|
|
||||||
description="Dedicated to bringing your vision to life with creativity and expertise."
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
animationType="slide-up"
|
|
||||||
gridVariant="uniform-all-items-equal"
|
|
||||||
members={[
|
|
||||||
{ id: "1", name: "Sarah Miller", role: "Lead Developer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", imageAlt: "Sarah Miller" },
|
|
||||||
{ id: "2", name: "Valentina Reyes", role: "Creative Director", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp", imageAlt: "Valentina Reyes" },
|
|
||||||
{ id: "3", name: "Carlos Mendoza", role: "UX Designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp", imageAlt: "Carlos Mendoza" },
|
|
||||||
{ id: "4", name: "Emily Chen", role: "Marketing Strategist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-4.webp", imageAlt: "Emily Chen" },
|
|
||||||
{ id: "5", name: "David Lee", role: "Project Manager", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-5.webp", imageAlt: "David Lee" }
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<FooterBase
|
<FooterBase
|
||||||
logoText="Grow With Social"
|
logoText="Grow With Social"
|
||||||
copyrightText="© 2026 | Grow With Social"
|
copyrightText="© 2026 | Grow With Social"
|
||||||
columns={[
|
columns={commonFooterColumnsEnglish}
|
||||||
{
|
|
||||||
title: "Company", items: [
|
|
||||||
{ label: "About", href: "/about" },
|
|
||||||
{ label: "Services", href: "/#services" },
|
|
||||||
{ label: "Work", href: "/#work" },
|
|
||||||
{ label: "Contact", href: "/contact" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Services", items: [
|
|
||||||
{ label: "Web Development", href: "/#" },
|
|
||||||
{ label: "SEO", href: "/#" },
|
|
||||||
{ label: "Branding", href: "/#" },
|
|
||||||
{ label: "UI/UX Design", href: "/#" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Connect", items: [
|
|
||||||
{ label: "Twitter", href: "/#" },
|
|
||||||
{ label: "LinkedIn", href: "/#" },
|
|
||||||
{ label: "Instagram", href: "/#" },
|
|
||||||
{ label: "Dribbble", href: "/#" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,10 +3,46 @@
|
|||||||
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() {
|
||||||
|
const commonNavItems = [
|
||||||
|
{ name: "Domov", id: "/" },
|
||||||
|
{ name: "Práca", id: "/#work" },
|
||||||
|
{ name: "Služby", id: "/services" },
|
||||||
|
{ name: "O nás", id: "/about" },
|
||||||
|
{ name: "Kontakt", id: "/contact" }
|
||||||
|
];
|
||||||
|
|
||||||
|
const commonFooterColumnsEnglish = [
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{ label: "About", href: "/about" },
|
||||||
|
{ label: "Services", href: "/services" },
|
||||||
|
{ label: "Work", href: "/#work" },
|
||||||
|
{ label: "Contact", href: "/contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Services", items: [
|
||||||
|
{ label: "Web Development", href: "/services" },
|
||||||
|
{ label: "SEO", href: "/services" },
|
||||||
|
{ label: "Branding", href: "/services" },
|
||||||
|
{ label: "UI/UX Design", href: "/services" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Connect", items: [
|
||||||
|
{ label: "Twitter", href: "/#" },
|
||||||
|
{ label: "LinkedIn", href: "/#" },
|
||||||
|
{ label: "Instagram", href: "/#" },
|
||||||
|
{ label: "Dribbble", href: "/#" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="text-stagger"
|
||||||
@@ -23,59 +59,56 @@ export default function ContactPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Grow With Social"
|
brandName="Grow With Social"
|
||||||
navItems={[
|
navItems={commonNavItems}
|
||||||
{ name: "Home", id: "/" },
|
|
||||||
{ name: "Work", id: "/#work" },
|
|
||||||
{ name: "Services", id: "/#services" },
|
|
||||||
{ name: "About", id: "/about" },
|
|
||||||
{ name: "Contact", id: "/contact" }
|
|
||||||
]}
|
|
||||||
button={{ text: "Get Started", href: "/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 },
|
||||||
buttonText="Send Message"
|
{ name: "phone", type: "tel", placeholder: "Telefónne číslo (voliteľné)" }
|
||||||
inputPlaceholder="Your Email Address"
|
]}
|
||||||
|
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"
|
||||||
columns={[
|
columns={commonFooterColumnsEnglish}
|
||||||
{
|
|
||||||
title: "Company", items: [
|
|
||||||
{ label: "About", href: "/about" },
|
|
||||||
{ label: "Services", href: "/#services" },
|
|
||||||
{ label: "Work", href: "/#work" },
|
|
||||||
{ label: "Contact", href: "/contact" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Services", items: [
|
|
||||||
{ label: "Web Development", href: "/#" },
|
|
||||||
{ label: "SEO", href: "/#" },
|
|
||||||
{ label: "Branding", href: "/#" },
|
|
||||||
{ label: "UI/UX Design", href: "/#" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Connect", items: [
|
|
||||||
{ label: "Twitter", href: "/#" },
|
|
||||||
{ label: "LinkedIn", href: "/#" },
|
|
||||||
{ label: "Instagram", href: "/#" },
|
|
||||||
{ label: "Dribbble", href: "/#" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,23 +5,30 @@ import "./globals.css";
|
|||||||
import "@/lib/gsap-setup";
|
import "@/lib/gsap-setup";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
|
import { Raleway } from "next/font/google";
|
||||||
|
import { Poppins } from "next/font/google";
|
||||||
|
import { Montserrat } from "next/font/google";
|
||||||
|
import { DM_Sans } from "next/font/google";
|
||||||
|
import { Libre_Baskerville } from "next/font/google";
|
||||||
|
import { Manrope } from "next/font/google";
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'PixelPerfect Agency | Web Design & Development',
|
title: 'PixelPerfect Agency | Web Design & Development',
|
||||||
description: 'Transform your online presence with PixelPerfect Agency. We craft stunning, high-performance websites tailored to your brand\'s unique vision and goals.',
|
description: 'Transform your online presence with PixelPerfect Agency. We craft stunning, high-performance websites tailored to your brand\'s unique vision and goals.',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const manrope = Manrope({
|
||||||
|
variable: "--font-manrope",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
@@ -30,9 +37,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${manrope.variable} antialiased`}>
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
|
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
180
src/app/page.tsx
180
src/app/page.tsx
@@ -8,11 +8,11 @@ import FeatureBento from "@/components/sections/feature/FeatureBento";
|
|||||||
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
||||||
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
||||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||||
import TeamCardFive from "@/components/sections/team/TeamCardFive";
|
|
||||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
||||||
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react";
|
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react";
|
||||||
|
|
||||||
export default function WebAgency2Page() {
|
export default function WebAgency2Page() {
|
||||||
@@ -33,12 +33,12 @@ export default function WebAgency2Page() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Grow With Social"
|
brandName="Grow With Social"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Práca", id: "work" },
|
{ name: "Domov", id: "/" },
|
||||||
{ name: "Služby", id: "services" },
|
{ name: "Práca", id: "#work" },
|
||||||
{ name: "O nás", id: "about" },
|
{ name: "Služby", id: "#services" },
|
||||||
{ name: "Kontakt", id: "contact" },
|
{ name: "O nás", id: "/about" },
|
||||||
|
{ name: "Kontakt", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Začať", href: "#contact" }}
|
|
||||||
/>
|
/>
|
||||||
<HeroSplitDoubleCarousel
|
<HeroSplitDoubleCarousel
|
||||||
title="Tvoríme digitálne zážitky"
|
title="Tvoríme digitálne zážitky"
|
||||||
@@ -47,24 +47,21 @@ export default function WebAgency2Page() {
|
|||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "canvas-reveal" }}
|
background={{ variant: "canvas-reveal" }}
|
||||||
buttons={[
|
buttons={[]}
|
||||||
{ text: "Začať projekt", href: "#contact" },
|
|
||||||
{ text: "Zobraziť prácu", href: "#work" },
|
|
||||||
]}
|
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
carouselPosition="right"
|
carouselPosition="right"
|
||||||
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" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-5.webp", imageAlt: "UI UX Dizajn - Zubná prax" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-5.webp", imageAlt: "UI UX Dizajn - Zubná prax" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp", imageAlt: "UI UX Dizajn - AI tvorca produktov" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp", imageAlt: "UI UX Dizajn - AI tvorca produktov" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-8.webp", imageAlt: "UI UX Dizajn - AI automatizácia" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-8.webp", imageAlt: "UI UX Dizajn - AI automatizácia" }
|
||||||
]}
|
]}
|
||||||
carouselItemClassName="!aspect-[4/5]"
|
carouselItemClassName="!aspect-[4/5]"
|
||||||
/>
|
/>
|
||||||
@@ -74,27 +71,44 @@ export default function WebAgency2Page() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
buttons={[{ text: "Všetky služby", href: "#services" }]}
|
buttons={[]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
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", imageAlt: "Webový projekt - Platforma AgentFlow AI" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Webový projekt - Architektonické štúdio" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp", 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" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp?_wi=2", imageAlt: "Projekt značky 2" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp?_wi=2", imageAlt: "Projekt značky 2" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp?_wi=2", imageAlt: "Projekt značky 3" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp?_wi=2", imageAlt: "Projekt značky 3" }
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "Tvorba web stránok a redizajn", description: "Navrhujeme a vyvíjame moderné, responzívne webové stránky a prepracovávame existujúce pre lepší výkon.", bentoComponent: "media-stack", items: [
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp?_wi=2", imageAlt: "Web development project - AgentFlow AI Platform" },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp?_wi=2", imageAlt: "Web development project - Architectural Studio" },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp?_wi=2", imageAlt: "Web development project - Summit Roofing" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Spravovanie sociálnych sietí", description: "Vytvárame a spravujeme angažujúci obsah pre vaše sociálne siete, čím zvyšujeme vašu online prítomnosť.", bentoComponent: "marquee", variant: "text", texts: ["Stratégia obsahu", "Správa kampaní", "Analýza dát", "Interakcia s komunitou", "Rast publika"],
|
||||||
|
centerIcon: MessageCircle
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Tvorba loga", description: "Navrhujeme jedinečné a vizuálne silné logá, ktoré dokonale reprezentujú vašu značku a hodnoty.", bentoComponent: "reveal-icon", icon: Sparkles
|
||||||
|
},
|
||||||
|
{
|
||||||
|
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" }
|
||||||
|
]
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<FeatureCardTwentySix
|
<FeatureCardTwentySix
|
||||||
@@ -102,25 +116,30 @@ export default function WebAgency2Page() {
|
|||||||
description="Výber projektov, ktoré sme vytvorili pre klientov naprieč odvetviami."
|
description="Výber projektov, ktoré sme vytvorili pre klientov naprieč odvetviami."
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[{ text: "Zobraziť všetky práce", href: "#work" }]}
|
buttons={[]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
cardClassName="!h-auto aspect-video"
|
cardClassName="!h-auto aspect-video"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Umbra Skincare", description: "Luxusný e-commerce s vôňami", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "Umbra Skincare website", buttonIcon: ArrowUpRight,
|
title: "Umbra Skincare", description: "Luxusný e-commerce s vôňami", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "Umbra Skincare website", buttonIcon: ArrowUpRight,
|
||||||
buttonHref: "#"},
|
buttonHref: "#"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Luxuria Travel", description: "Luxusné cestovné zážitky na mieru", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Luxuria Travel website", buttonIcon: ArrowUpRight,
|
title: "Luxuria Travel", description: "Luxusné cestovné zážitky na mieru", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Luxuria Travel website", buttonIcon: ArrowUpRight,
|
||||||
buttonHref: "#"},
|
buttonHref: "#"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Dental Care", description: "Špičková zubná prax", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Luxury Dental Care website", buttonIcon: ArrowUpRight,
|
title: "Dental Care", description: "Špičková zubná prax", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Luxury Dental Care website", buttonIcon: ArrowUpRight,
|
||||||
buttonHref: "#"},
|
buttonHref: "#"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Summit Roofing", description: "Profesionálne strešné služby", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", imageAlt: "Summit Roofing website", buttonIcon: ArrowUpRight,
|
title: "Summit Roofing", description: "Profesionálne strešné služby", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", imageAlt: "Summit Roofing website", buttonIcon: ArrowUpRight,
|
||||||
buttonHref: "#"},
|
buttonHref: "#"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Dubai Real Estate", description: "Ponuky luxusných nehnuteľností", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", imageAlt: "Dubai Real Estate website", buttonIcon: ArrowUpRight,
|
title: "Dubai Real Estate", description: "Ponuky luxusných nehnuteľností", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", imageAlt: "Dubai Real Estate website", buttonIcon: ArrowUpRight,
|
||||||
buttonHref: "#"},
|
buttonHref: "#"
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<FeatureBento
|
<FeatureBento
|
||||||
@@ -141,42 +160,56 @@ export default function WebAgency2Page() {
|
|||||||
{ name: "Kamera", icon: Camera },
|
{ name: "Kamera", icon: Camera },
|
||||||
{ name: "Hudba", icon: Music },
|
{ name: "Hudba", icon: Music },
|
||||||
{ name: "Nastavenia", icon: Settings },
|
{ name: "Nastavenia", icon: Settings },
|
||||||
{ name: "Chat", icon: MessageCircle },
|
{ name: "Chat", icon: MessageCircle }
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Bezpečný hosting", description: "Zabezpečenie na podnikovej úrovni a 99,9% dostupnosť pre vašu webovú stránku.", bentoComponent: "reveal-icon", icon: Shield,
|
title: "Bezpečný hosting", description: "Zabezpečenie na podnikovej úrovni a 99,9% dostupnosť pre vašu webovú stránku.", bentoComponent: "reveal-icon", icon: Shield
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Rýchle dodanie", description: "Od konceptu po spustenie v rekordnom čase bez obetovania kvality.", bentoComponent: "timeline", heading: "Spustenie projektu", subheading: "Týždeň 1", items: [
|
title: "Rýchle dodanie", description: "Od konceptu po spustenie v rekordnom čase bez obetovania kvality.", bentoComponent: "timeline", heading: "Spustenie projektu", subheading: "Týždeň 1", items: [
|
||||||
{ label: "Objavovanie a wireframes", detail: "Deň 1-3" },
|
{ label: "Objavovanie a wireframes", detail: "Deň 1-3" },
|
||||||
{ label: "Návrh a vývoj", detail: "Deň 4-10" },
|
{ label: "Návrh a vývoj", detail: "Deň 4-10" },
|
||||||
{ label: "Testovanie a nasadenie", detail: "Deň 11-14" },
|
{ label: "Testovanie a nasadenie", detail: "Deň 11-14" }
|
||||||
],
|
],
|
||||||
completedLabel: "Spustené"},
|
completedLabel: "Spustené"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Bezproblémové integrácie", description: "Spojte sa s nástrojmi, ktoré už používate — CRM, analytika, platby a ďalšie.", bentoComponent: "orbiting-icons", centerIcon: Puzzle,
|
title: "Bezproblémové integrácie", description: "Spojte sa s nástrojmi, ktoré už používate — CRM, analytika, platby a ďalšie.", bentoComponent: "orbiting-icons", centerIcon: Puzzle,
|
||||||
items: [
|
items: [
|
||||||
{ icon: Shield },
|
{ icon: Shield },
|
||||||
{ icon: Monitor },
|
{ icon: Monitor },
|
||||||
{ icon: Zap },
|
{ icon: Zap },
|
||||||
{ icon: TrendingUp },
|
{ icon: TrendingUp }
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Rastové trendy", description: "Dátami podložené poznatky na optimalizáciu vašej prítomnosti vo vyhľadávaní a zvýšenie návštevnosti.", bentoComponent: "line-chart"},
|
title: "Rastové trendy", description: "Dátami podložené poznatky na optimalizáciu vašej prítomnosti vo vyhľadávaní a zvýšenie návštevnosti.", bentoComponent: "line-chart"
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardTen
|
||||||
testimonial="Grow With Social úplne premenil našu online prítomnosť. Tím dodal úchvatnú webovú stránku, ktorá prekonala naše očakávania a zdvojnásobila mieru konverzie."
|
title="Čo hovoria naši klienti"
|
||||||
rating={5}
|
description="Recenzie od našich spokojných klientov po celom svete."
|
||||||
author="— Maria Santos, CEO Luxuria Travel"
|
textboxLayout="default"
|
||||||
avatars={[
|
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", alt: "Client" },
|
|
||||||
]}
|
|
||||||
ratingAnimation="slide-up"
|
|
||||||
avatarsAnimation="slide-up"
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
testimonials={[
|
||||||
|
{
|
||||||
|
id: "1", title: "Transformovali našu online prítomnosť", quote: "Grow With Social úplne premenil našu online prítomnosť. Tím dodal úchvatnú webovú stránku, ktorá prekonala naše očakávania a zdvojnásobila mieru konverzie.", name: "Maria S.", role: "CEO Luxuria Travel", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", title: "Výnimočný dizajn a SEO", quote: "Ich tím vytvoril moderný dizajn a výrazne zlepšil naše SEO. Vidíme nárast organickej návštevnosti o 40% za tri mesiace. Skutoční profesionáli!", name: "Ján N.", role: "Marketingový riaditeľ, TechSolutions", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", title: "Skvelá komunikácia a výsledky", quote: "Spolupráca s Grow With Social bola bezproblémová. Komunikácia bola vynikajúca a dodaný produkt bol presne to, čo sme potrebovali. Vysoko odporúčame!", name: "Petra K.", role: "Zakladateľka, Creative Hub", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4", title: "Zvýšili naše konverzie", quote: "Vďaka ich práci sa nám podarilo zvýšiť mieru konverzie o 25%. Sú spoľahliví, efektívni a výsledky hovoria samy za seba.", name: "Martin H.", role: "E-commerce manažér, Fashionista", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp?_wi=1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "5", title: "Presvedčivý branding", quote: "Potrebovali sme osviežiť našu značku a Grow With Social to zvládli s prehľadom. Nové logo a webová identita sú úžasné a naši zákazníci ich milujú.", name: "Zuzana F.", role: "Majiteľka, Aura Wellness", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp?_wi=1"
|
||||||
|
}
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
<MetricCardOne
|
<MetricCardOne
|
||||||
title="Dôverujú nám lídri v odvetví"
|
title="Dôverujú nám lídri v odvetví"
|
||||||
@@ -188,7 +221,7 @@ export default function WebAgency2Page() {
|
|||||||
metrics={[
|
metrics={[
|
||||||
{ id: "projects", value: "100+", title: "Projekty", description: "Úspešne dodané vo všetkých odvetviach", icon: Award },
|
{ id: "projects", value: "100+", title: "Projekty", description: "Úspešne dodané vo všetkých odvetviach", icon: Award },
|
||||||
{ id: "satisfaction", value: "99%", title: "Spokojnosť", description: "Miera spokojnosti klientov a rastie", icon: Users },
|
{ id: "satisfaction", value: "99%", title: "Spokojnosť", description: "Miera spokojnosti klientov a rastie", icon: Users },
|
||||||
{ id: "years", value: "8+", title: "Roky", description: "Tvorby výnimočných digitálnych zážitkov", icon: TrendingUp },
|
{ id: "years", value: "8+", title: "Roky", description: "Tvorby výnimočných digitálnych zážitkov", icon: TrendingUp }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<FeatureCardSixteen
|
<FeatureCardSixteen
|
||||||
@@ -199,26 +232,16 @@ export default function WebAgency2Page() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
negativeCard={{
|
negativeCard={{
|
||||||
items: [
|
items: [
|
||||||
"Generické šablóny bez osobitosti", "Pomalé časy načítania a nízky výkon", "Žiadna SEO stratégia ani viditeľnosť vo vyhľadávaní", "Zastaraný dizajn, ktorý poškodzuje dôveryhodnosť", "Žiadna priebežná podpora po spustení"],
|
"Generické šablóny bez osobitosti", "Pomalé časy načítania a nízky výkon", "Žiadna SEO stratégia ani viditeľnosť vo vyhľadávaní", "Zastaraný dizajn, ktorý poškodzuje dôveryhodnosť", "Žiadna priebežná podpora po spustení"
|
||||||
|
]
|
||||||
}}
|
}}
|
||||||
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"
|
||||||
|
]
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<TeamCardFive
|
|
||||||
title="Spoznajte tím"
|
|
||||||
description="Kreatívne mysle za vaším ďalším projektom."
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
animationType="slide-up"
|
|
||||||
mediaClassName="object-[65%_center]"
|
|
||||||
team={[
|
|
||||||
{ id: "1", name: "Sarah Miller", role: "Hlavná vývojárka", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", imageAlt: "Sarah Miller" },
|
|
||||||
{ id: "2", name: "Valentina Reyes", role: "Kreatívna riaditeľka", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp", imageAlt: "Valentina Reyes" },
|
|
||||||
{ id: "3", name: "Carlos Mendoza", role: "UX Dizajnér", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp", imageAlt: "Carlos Mendoza" },
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
<FaqBase
|
<FaqBase
|
||||||
title="Často kladené otázky"
|
title="Často kladené otázky"
|
||||||
description="Všetko, čo potrebujete vedieť o spolupráci s nami."
|
description="Všetko, čo potrebujete vedieť o spolupráci s nami."
|
||||||
@@ -230,7 +253,7 @@ export default function WebAgency2Page() {
|
|||||||
{ id: "2", title: "Aká je vaša cenová štruktúra?", content: "Ponúkame projektové ceny prispôsobené vašim potrebám. Každý projekt zahŕňa návrh, vývoj, SEO optimalizáciu a popredajnú podporu." },
|
{ id: "2", title: "Aká je vaša cenová štruktúra?", content: "Ponúkame projektové ceny prispôsobené vašim potrebám. Každý projekt zahŕňa návrh, vývoj, SEO optimalizáciu a popredajnú podporu." },
|
||||||
{ id: "3", title: "Ponúkate priebežnú údržbu?", content: "Áno! Poskytujeme priebežnú podporu a balíčky údržby, aby bola vaša webová stránka aktualizovaná, bezpečná a fungovala čo najlepšie." },
|
{ id: "3", title: "Ponúkate priebežnú údržbu?", content: "Áno! Poskytujeme priebežnú podporu a balíčky údržby, aby bola vaša webová stránka aktualizovaná, bezpečná a fungovala čo najlepšie." },
|
||||||
{ id: "4", title: "Môžete prepracovať moju existujúcu webovú stránku?", content: "Samozrejme. Špecializujeme sa na redizajn webových stránok, ktoré modernizujú vašu značku a zároveň zachovávajú váš existujúci obsah a SEO pozície." },
|
{ id: "4", title: "Môžete prepracovať moju existujúcu webovú stránku?", content: "Samozrejme. Špecializujeme sa na redizajn webových stránok, ktoré modernizujú vašu značku a zároveň zachovávajú váš existujúci obsah a SEO pozície." },
|
||||||
{ id: "5", title: "Aké technológie používate?", content: "Staváme s modernými technológiami vrátane Next.js, React a Tailwind CSS, aby sme zabezpečili rýchle, škálovateľné a udržiavateľné webové stránky." },
|
{ id: "5", title: "Aké technológie používate?", content: "Staváme s modernými technológiami vrátane Next.js, React a Tailwind CSS, aby sme zabezpečili rýchle, škálovateľné a udržiavateľné webové stránky." }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
@@ -238,10 +261,7 @@ export default function WebAgency2Page() {
|
|||||||
title="Pripravení transformovať svoju digitálnu prítomnosť?"
|
title="Pripravení transformovať svoju digitálnu prítomnosť?"
|
||||||
description="Poďme spoločne vytvoriť niečo mimoriadne. Ozvite sa a prediskutujme váš ďalší projekt."
|
description="Poďme spoločne vytvoriť niečo mimoriadne. Ozvite sa a prediskutujme váš ďalší projekt."
|
||||||
background={{ variant: "rotated-rays-animated" }}
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
buttons={[
|
buttons={[]}
|
||||||
{ text: "Začať váš projekt", href: "#contact" },
|
|
||||||
{ text: "Zobraziť našu prácu", href: "#work" },
|
|
||||||
]}
|
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
@@ -251,28 +271,28 @@ export default function WebAgency2Page() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Spoločnosť", items: [
|
title: "Spoločnosť", items: [
|
||||||
{ label: "O nás", href: "#about" },
|
{ label: "O nás", href: "/about" },
|
||||||
{ label: "Služby", href: "#services" },
|
{ label: "Služby", href: "#services" },
|
||||||
{ label: "Práca", href: "#work" },
|
{ label: "Práca", href: "#work" },
|
||||||
{ label: "Kontakt", href: "#contact" },
|
{ label: "Kontakt", href: "/contact" }
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Služby", items: [
|
title: "Služby", items: [
|
||||||
{ label: "Vývoj webu", href: "#" },
|
{ label: "Vývoj webu", href: "/#" },
|
||||||
{ label: "SEO", href: "#" },
|
{ label: "SEO", href: "/#" },
|
||||||
{ label: "Budovanie značky", href: "#" },
|
{ label: "Budovanie značky", href: "/#" },
|
||||||
{ label: "UI/UX Dizajn", href: "#" },
|
{ label: "UI/UX Dizajn", href: "/#" }
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Spojiť sa", items: [
|
title: "Spojiť sa", items: [
|
||||||
{ label: "Twitter", href: "/#" },
|
{ label: "Twitter", href: "/#" },
|
||||||
{ label: "LinkedIn", href: "/#" },
|
{ label: "LinkedIn", href: "/#" },
|
||||||
{ label: "Instagram", href: "/#" },
|
{ label: "Instagram", href: "/#" },
|
||||||
{ label: "Dribbble", href: "/#" },
|
{ label: "Dribbble", href: "/#" }
|
||||||
],
|
]
|
||||||
},
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter-tight), sans-serif;
|
font-family: var(--font-manrope), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-inter-tight), sans-serif;
|
font-family: var(--font-manrope), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user