Compare commits
12 Commits
version_12
...
version_14
| Author | SHA1 | Date | |
|---|---|---|---|
| e2629ae1c6 | |||
| eeda946015 | |||
| 5790095f2c | |||
| a06a3ca757 | |||
| 8fcc63222b | |||
| a3b8a196e9 | |||
| db4ad2d54b | |||
| 4e20e5b519 | |||
| 73c5ba8be4 | |||
| a6bb9cda37 | |||
| ffdbc96006 | |||
| 5156bc4a79 |
@@ -4,11 +4,46 @@ 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() {
|
||||
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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -25,13 +60,7 @@ export default function AboutPage() {
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Grow With Social"
|
||||
navItems={[
|
||||
{ name: "Domov", id: "/" },
|
||||
{ name: "Práca", id: "/#work" },
|
||||
{ name: "Služby", id: "/services" },
|
||||
{ name: "O nás", id: "/about" },
|
||||
{ name: "Kontakt", id: "/contact" }
|
||||
]}
|
||||
navItems={commonNavItems}
|
||||
/>
|
||||
|
||||
<AboutMetric
|
||||
@@ -45,51 +74,12 @@ export default function AboutPage() {
|
||||
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
|
||||
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: "/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: "/#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={commonFooterColumnsEnglish}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -8,6 +8,41 @@ import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { Mail, Phone, Instagram } from "lucide-react"; // Import Lucide icons
|
||||
|
||||
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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -24,13 +59,7 @@ export default function ContactPage() {
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Grow With Social"
|
||||
navItems={[
|
||||
{ name: "Domov", id: "/" },
|
||||
{ name: "Práca", id: "/#work" },
|
||||
{ name: "Služby", id: "/services" },
|
||||
{ name: "O nás", id: "/about" },
|
||||
{ name: "Kontakt", id: "/contact" }
|
||||
]}
|
||||
navItems={commonNavItems}
|
||||
/>
|
||||
|
||||
<ContactSplitForm
|
||||
@@ -77,32 +106,7 @@ export default function ContactPage() {
|
||||
<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: "/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: "/#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={commonFooterColumnsEnglish}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -8,6 +8,9 @@ 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";
|
||||
|
||||
|
||||
|
||||
@@ -18,12 +21,11 @@ export const metadata: Metadata = {
|
||||
|
||||
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
|
||||
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -35,7 +37,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -8,7 +8,7 @@ import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
||||
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import TeamCardFive from "@/components/sections/team/TeamCardFive";
|
||||
|
||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
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
|
||||
title="Často kladené otázky"
|
||||
description="Všetko, čo potrebujete vedieť o spolupráci s nami."
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user