Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| acf0671c90 | |||
| 60fce4edab | |||
| e521af213c | |||
| eae8666fde | |||
| 9f10b7a804 | |||
| 605864ed4a | |||
| 0b63aa68bb | |||
| bdd595325d | |||
| a8a4165394 | |||
| f64515389b | |||
| 67b6bee05c | |||
| a603b191d8 | |||
| 63ddb2d2bc | |||
| fd5a0205c5 | |||
| 22c5d602ed | |||
| 69041b5cf3 | |||
| 3ec5e59ebe | |||
| 39e978cbfe | |||
| 67297156fa | |||
| eec13ac2a1 | |||
| 69a188d942 | |||
| 8047bdfca9 | |||
| bb13f4eadc | |||
| bb5faae416 | |||
| c948594ff4 | |||
| ea1f167ac0 | |||
| b2e6139219 | |||
| 7f0c9ed1b9 | |||
| 8b287949d7 | |||
| b89ff2b77e | |||
| 153f30b32c | |||
| 3eb24b1672 | |||
| de7f08d7d6 | |||
| fddbb8fc80 |
97
src/app/about/page.tsx
Normal file
97
src/app/about/page.tsx
Normal file
@@ -0,0 +1,97 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||
import TeamCardOne from "@/components/sections/team/TeamCardOne";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { Clock, Sparkles, Star } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Grow With Social"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Work", id: "/#work" },
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
/>
|
||||
|
||||
<AboutMetric
|
||||
title="Crafting Digital Excellence Since 2018"
|
||||
metrics={[
|
||||
{ icon: Clock, label: "Years of Experience", value: "5+" },
|
||||
{ icon: Sparkles, label: "Projects Completed", value: "100+" },
|
||||
{ icon: Star, label: "Client Satisfaction", value: "High" }
|
||||
]}
|
||||
metricsAnimation="blur-reveal"
|
||||
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?_wi=1", 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?_wi=1", 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?_wi=1", 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
|
||||
logoText="Grow With Social"
|
||||
copyrightText="© 2026 | Grow With Social"
|
||||
columns={[
|
||||
{
|
||||
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>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
79
src/app/contact/page.tsx
Normal file
79
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,79 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Grow With Social"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Work", id: "/#work" },
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
/>
|
||||
|
||||
<ContactSplit
|
||||
tag="Get in Touch"
|
||||
title="Let's Start Your Next Project"
|
||||
description="Tell us about your ideas, and we'll help you bring them to life. Reach out today for a consultation."
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Your Email Address"
|
||||
useInvertedBackground={false}
|
||||
onSubmit={(email) => console.log("Contact form submitted with email:", email)}
|
||||
/>
|
||||
|
||||
<FooterBase
|
||||
logoText="Grow With Social"
|
||||
copyrightText="© 2026 | Grow With Social"
|
||||
columns={[
|
||||
{
|
||||
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>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -5,23 +5,28 @@ import "./globals.css";
|
||||
import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
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";
|
||||
|
||||
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 = {
|
||||
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.',
|
||||
};
|
||||
|
||||
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -30,9 +35,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
|
||||
{children}
|
||||
<script
|
||||
|
||||
306
src/app/page.tsx
306
src/app/page.tsx
@@ -25,189 +25,150 @@ export default function WebAgency2Page() {
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Webild"
|
||||
brandName="Grow With Social"
|
||||
navItems={[
|
||||
{ name: "Work", id: "work" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Práca", id: "work" },
|
||||
{ name: "Služby", id: "services" },
|
||||
{ name: "O nás", id: "/about" },
|
||||
{ name: "Kontakt", id: "/contact" },
|
||||
]}
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
/>
|
||||
<HeroSplitDoubleCarousel
|
||||
title="We Build Digital Experiences"
|
||||
description="Transform your brand with cutting-edge web design and development. We craft stunning websites that convert visitors into customers."
|
||||
tag="Award-Winning Agency"
|
||||
title="Tvoríme digitálne zážitky"
|
||||
description="Premeňte svoju značku s najmodernejším webovým dizajnom a vývojom. Vytvárame úchvatné webové stránky, ktoré premieňajú návštevníkov na zákazníkov."
|
||||
tag="Ocenená agentúra"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
buttons={[
|
||||
{ text: "Start Project", href: "#contact" },
|
||||
{ text: "View Work", href: "#work" },
|
||||
]}
|
||||
buttons={[]}
|
||||
buttonAnimation="slide-up"
|
||||
carouselPosition="right"
|
||||
leftCarouselItems={[
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "UI UX Design - Daily Life app" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "UI UX Design - SaaS platform" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp", imageAlt: "UI UX Design - Luminé skincare" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-7.webp", imageAlt: "UI UX Design - Online courses" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-9.webp", imageAlt: "UI UX Design - Business coach" },
|
||||
{ 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-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-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č" },
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "UI UX Design - Luxuria travel" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-5.webp", imageAlt: "UI UX Design - Dental practice" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp", imageAlt: "UI UX Design - AI product builder" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-8.webp", imageAlt: "UI UX Design - AI automation" },
|
||||
{ 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-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" },
|
||||
]}
|
||||
carouselItemClassName="!aspect-[4/5]"
|
||||
/>
|
||||
<FeatureBento
|
||||
title="Our Services"
|
||||
description="We offer a full suite of digital services to help your brand stand out online."
|
||||
title="Naše služby"
|
||||
description="Ponúkame kompletnú sadu digitálnych služieb, ktoré pomôžu vašej značke vyniknúť online."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
buttons={[{ text: "All Services", href: "#services" }]}
|
||||
buttons={[]}
|
||||
buttonAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "SEO",
|
||||
description: "We optimize your website to rank higher on search engines and drive organic traffic.",
|
||||
bentoComponent: "marquee",
|
||||
centerIcon: Search,
|
||||
variant: "text",
|
||||
texts: ["Keywords", "Backlinks", "Meta Tags", "Organic Traffic", "Rankings", "Analytics", "SERP", "Indexing"],
|
||||
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"],
|
||||
},
|
||||
{
|
||||
title: "Web Development",
|
||||
description: "Custom-built websites that are fast, responsive, and designed to convert.",
|
||||
bentoComponent: "media-stack",
|
||||
items: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "Web project - AgentFlow AI platform" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Web project - Architecture studio" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp", imageAlt: "Web project - Summit Roofing" },
|
||||
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: "Branding",
|
||||
description: "Build a memorable brand identity that resonates with your audience.",
|
||||
bentoComponent: "media-stack",
|
||||
items: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "Brand project 1" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "Brand project 2" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Brand project 3" },
|
||||
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-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" },
|
||||
],
|
||||
},
|
||||
{
|
||||
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"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<FeatureCardTwentySix
|
||||
title="Our Work"
|
||||
description="A selection of projects we've crafted for clients across industries."
|
||||
title="Naša práca"
|
||||
description="Výber projektov, ktoré sme vytvorili pre klientov naprieč odvetviami."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "View All Work", href: "#work" }]}
|
||||
buttons={[]}
|
||||
buttonAnimation="slide-up"
|
||||
cardClassName="!h-auto aspect-video"
|
||||
features={[
|
||||
{
|
||||
title: "Umbra Skincare",
|
||||
description: "Luxury fragrance e-commerce",
|
||||
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: "#",
|
||||
},
|
||||
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: "#"},
|
||||
{
|
||||
title: "Luxuria Travel",
|
||||
description: "Bespoke luxury travel experiences",
|
||||
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: "#",
|
||||
},
|
||||
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: "#"},
|
||||
{
|
||||
title: "Dental Care",
|
||||
description: "Premier dental practice",
|
||||
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: "#",
|
||||
},
|
||||
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: "#"},
|
||||
{
|
||||
title: "Summit Roofing",
|
||||
description: "Professional roofing services",
|
||||
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: "#",
|
||||
},
|
||||
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: "#"},
|
||||
{
|
||||
title: "Dubai Real Estate",
|
||||
description: "Luxury property listings",
|
||||
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: "#",
|
||||
},
|
||||
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: "#"},
|
||||
]}
|
||||
/>
|
||||
<FeatureBento
|
||||
title="Our Promise"
|
||||
description="We deliver results that speak for themselves."
|
||||
title="Náš sľub"
|
||||
description="Prinášame výsledky, ktoré hovoria samy za seba."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "All Devices Optimization",
|
||||
description: "Pixel-perfect websites that look stunning on every screen size and device.",
|
||||
bentoComponent: "phone",
|
||||
statusIcon: Lock,
|
||||
title: "Optimalizácia pre všetky zariadenia", description: "Pixelovo dokonalé webové stránky, ktoré vyzerajú úžasne na každej veľkosti obrazovky a zariadení.", bentoComponent: "phone", statusIcon: Lock,
|
||||
alertIcon: Monitor,
|
||||
alertTitle: "Responsive check",
|
||||
alertMessage: "All breakpoints passed",
|
||||
apps: [
|
||||
{ name: "Phone", icon: Phone },
|
||||
alertTitle: "Kontrola responzivity", alertMessage: "Všetky breakpointy prešli", apps: [
|
||||
{ name: "Telefón", icon: Phone },
|
||||
{ name: "SMS", icon: MessageCircle },
|
||||
{ name: "Books", icon: BookOpen },
|
||||
{ name: "Knihy", icon: BookOpen },
|
||||
{ name: "TV", icon: Tv },
|
||||
{ name: "Camera", icon: Camera },
|
||||
{ name: "Music", icon: Music },
|
||||
{ name: "Settings", icon: Settings },
|
||||
{ name: "Kamera", icon: Camera },
|
||||
{ name: "Hudba", icon: Music },
|
||||
{ name: "Nastavenia", icon: Settings },
|
||||
{ name: "Chat", icon: MessageCircle },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Secure Hosting",
|
||||
description: "Enterprise-grade security and 99.9% uptime for your website.",
|
||||
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: "Fast Turnaround",
|
||||
description: "From concept to launch in record time without sacrificing quality.",
|
||||
bentoComponent: "timeline",
|
||||
heading: "Project Launch",
|
||||
subheading: "Week 1",
|
||||
items: [
|
||||
{ label: "Discovery & wireframes", detail: "Day 1-3" },
|
||||
{ label: "Design & development", detail: "Day 4-10" },
|
||||
{ label: "Testing & deployment", detail: "Day 11-14" },
|
||||
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: "Návrh a vývoj", detail: "Deň 4-10" },
|
||||
{ label: "Testovanie a nasadenie", detail: "Deň 11-14" },
|
||||
],
|
||||
completedLabel: "Live",
|
||||
},
|
||||
completedLabel: "Spustené"},
|
||||
{
|
||||
title: "Seamless Integrations",
|
||||
description: "Connect with the tools you already use — CRMs, analytics, payments, and more.",
|
||||
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: [
|
||||
{ icon: Shield },
|
||||
{ icon: Monitor },
|
||||
@@ -216,16 +177,13 @@ export default function WebAgency2Page() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Growth Trends",
|
||||
description: "Data-driven insights to optimize your search presence and drive traffic.",
|
||||
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
|
||||
testimonial="Webild completely transformed our online presence. The team delivered a stunning website that exceeded our expectations and doubled our conversion rate."
|
||||
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."
|
||||
rating={5}
|
||||
author="— Maria Santos, CEO at Luxuria Travel"
|
||||
author="— Maria Santos, CEO Luxuria Travel"
|
||||
avatars={[
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", alt: "Client" },
|
||||
]}
|
||||
@@ -234,111 +192,95 @@ export default function WebAgency2Page() {
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<MetricCardOne
|
||||
title="Trusted by Industry Leaders"
|
||||
description="Years of experience building digital products that drive real results."
|
||||
title="Dôverujú nám lídri v odvetví"
|
||||
description="Dlhoročné skúsenosti s tvorbou digitálnych produktov, ktoré prinášajú skutočné výsledky."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
metrics={[
|
||||
{ id: "projects", value: "100+", title: "Projects", description: "Successfully delivered across all industries", icon: Award },
|
||||
{ id: "satisfaction", value: "99%", title: "Satisfaction", description: "Client satisfaction rate and counting", icon: Users },
|
||||
{ id: "years", value: "8+", title: "Years", description: "Of crafting exceptional digital experiences", icon: TrendingUp },
|
||||
{ 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: "years", value: "8+", title: "Roky", description: "Tvorby výnimočných digitálnych zážitkov", icon: TrendingUp },
|
||||
]}
|
||||
/>
|
||||
<FeatureCardSixteen
|
||||
title="Why Choose Webild"
|
||||
description="See the difference a professional web agency makes."
|
||||
title="Prečo si vybrať Grow With Social"
|
||||
description="Pozrite sa, aký rozdiel robí profesionálna webová agentúra."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Generic templates with no personality",
|
||||
"Slow load times and poor performance",
|
||||
"No SEO strategy or search visibility",
|
||||
"Outdated design that hurts credibility",
|
||||
"No ongoing support after launch",
|
||||
],
|
||||
"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={{
|
||||
items: [
|
||||
"Custom designs tailored to your brand",
|
||||
"Lightning-fast performance on all devices",
|
||||
"Built-in SEO to drive organic traffic",
|
||||
"Modern design that builds trust",
|
||||
"Dedicated support and maintenance",
|
||||
],
|
||||
"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"],
|
||||
}}
|
||||
/>
|
||||
<TeamCardFive
|
||||
title="Meet the Team"
|
||||
description="The creative minds behind your next project."
|
||||
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: "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: "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?_wi=2", 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?_wi=2", 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?_wi=2", imageAlt: "Carlos Mendoza" },
|
||||
]}
|
||||
/>
|
||||
<FaqBase
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about working with us."
|
||||
title="Často kladené otázky"
|
||||
description="Všetko, čo potrebujete vedieť o spolupráci s nami."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{ id: "1", title: "How long does a typical project take?", content: "Most projects are completed within 2-4 weeks depending on scope and complexity. We'll provide a detailed timeline during our initial consultation." },
|
||||
{ id: "2", title: "What is your pricing structure?", content: "We offer project-based pricing tailored to your needs. Every project includes design, development, SEO optimization, and post-launch support." },
|
||||
{ id: "3", title: "Do you offer ongoing maintenance?", content: "Yes! We provide ongoing support and maintenance packages to keep your website updated, secure, and performing at its best." },
|
||||
{ id: "4", title: "Can you redesign my existing website?", content: "Absolutely. We specialize in website redesigns that modernize your brand while preserving your existing content and SEO rankings." },
|
||||
{ id: "5", title: "What technologies do you use?", content: "We build with modern technologies including Next.js, React, and Tailwind CSS to ensure fast, scalable, and maintainable websites." },
|
||||
{ id: "1", title: "Ako dlho trvá typický projekt?", content: "Väčšina projektov je dokončená do 2-4 týždňov v závislosti od rozsahu a zložitosti. Podrobný harmonogram vám poskytneme počas úvodnej konzultácie." },
|
||||
{ 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: "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." },
|
||||
]}
|
||||
/>
|
||||
<ContactCTA
|
||||
tag="Get in Touch"
|
||||
title="Ready to Transform Your Digital Presence?"
|
||||
description="Let's build something extraordinary together. Get in touch and let's discuss your next project."
|
||||
tag="Ozvite sa"
|
||||
title="Pripravení transformovať svoju digitálnu prítomnosť?"
|
||||
description="Poďme spoločne vytvoriť niečo mimoriadne. Ozvite sa a prediskutujme váš ďalší projekt."
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
buttons={[
|
||||
{ text: "Start Your Project", href: "#contact" },
|
||||
{ text: "View Our Work", href: "#work" },
|
||||
]}
|
||||
buttons={[]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FooterBase
|
||||
logoText="Webild"
|
||||
copyrightText="© 2026 | Webild"
|
||||
logoText="Grow With Social"
|
||||
copyrightText="© 2026 | Grow With Social"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Work", href: "#work" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
title: "Spoločnosť", items: [
|
||||
{ label: "O nás", href: "/about" },
|
||||
{ label: "Služby", href: "#services" },
|
||||
{ label: "Práca", href: "#work" },
|
||||
{ label: "Kontakt", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Web Development", href: "#" },
|
||||
{ label: "SEO", href: "#" },
|
||||
{ label: "Branding", href: "#" },
|
||||
{ label: "UI/UX Design", href: "#" },
|
||||
title: "Služby", items: [
|
||||
{ label: "Vývoj webu", href: "/#" },
|
||||
{ label: "SEO", href: "/#" },
|
||||
{ label: "Budovanie značky", href: "/#" },
|
||||
{ label: "UI/UX Dizajn", href: "/#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
{ label: "Twitter", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Dribbble", href: "#" },
|
||||
title: "Spojiť sa", items: [
|
||||
{ label: "Twitter", href: "/#" },
|
||||
{ label: "LinkedIn", href: "/#" },
|
||||
{ label: "Instagram", href: "/#" },
|
||||
{ label: "Dribbble", href: "/#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -346,4 +288,4 @@ export default function WebAgency2Page() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user