Compare commits
6 Commits
version_11
...
version_13
| Author | SHA1 | Date | |
|---|---|---|---|
| a6bb9cda37 | |||
| ffdbc96006 | |||
| 5156bc4a79 | |||
| b9132eac9d | |||
| 795aed6bad | |||
| 22c757d508 |
@@ -4,7 +4,7 @@ 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";
|
||||||
|
|
||||||
@@ -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" }
|
||||||
]}
|
]}
|
||||||
@@ -45,21 +45,7 @@ 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?_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?_wi=1", 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?_wi=1", imageAlt: "David Lee" }
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<FooterBase
|
<FooterBase
|
||||||
logoText="Grow With Social"
|
logoText="Grow With Social"
|
||||||
@@ -68,17 +54,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" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ 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" }
|
||||||
]}
|
]}
|
||||||
@@ -81,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" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ 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";
|
||||||
@@ -241,19 +241,7 @@ export default function WebAgency2Page() {
|
|||||||
]
|
]
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<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?_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
|
<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."
|
||||||
|
|||||||
Reference in New Issue
Block a user