Compare commits
11 Commits
version_14
...
version_16
| Author | SHA1 | Date | |
|---|---|---|---|
| 176316f960 | |||
| e5c78ca4c7 | |||
| 49c92bb60f | |||
| 6101cb5ab7 | |||
| 62a62eb2c0 | |||
| 244e3d612d | |||
| f0bee28bdc | |||
| ec6448b4d6 | |||
| 363594589c | |||
| 4a623aef1f | |||
| ad69fdb378 |
@@ -11,7 +11,7 @@ import { Clock, Sparkles, Star } from "lucide-react";
|
|||||||
export default function AboutPage() {
|
export default function AboutPage() {
|
||||||
const commonNavItems = [
|
const commonNavItems = [
|
||||||
{ name: "Domov", id: "/" },
|
{ name: "Domov", id: "/" },
|
||||||
{ 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" }
|
||||||
@@ -22,7 +22,7 @@ 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: "Contact", href: "/contact" }
|
{ label: "Contact", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import { Mail, Phone, Instagram } from "lucide-react"; // Import Lucide icons
|
|||||||
export default function ContactPage() {
|
export default function ContactPage() {
|
||||||
const commonNavItems = [
|
const commonNavItems = [
|
||||||
{ name: "Domov", id: "/" },
|
{ name: "Domov", id: "/" },
|
||||||
{ 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" }
|
||||||
@@ -21,7 +21,7 @@ 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: "Contact", href: "/contact" }
|
{ label: "Contact", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -24,8 +24,13 @@ export const metadata: Metadata = {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
const manrope = Manrope({
|
|
||||||
variable: "--font-manrope",
|
const montserrat = Montserrat({
|
||||||
|
variable: "--font-montserrat",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -37,7 +42,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${manrope.variable} antialiased`}>
|
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||||
|
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ 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 TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
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, Mail, Instagram } from "lucide-react";
|
||||||
|
|
||||||
export default function WebAgency2Page() {
|
export default function WebAgency2Page() {
|
||||||
return (
|
return (
|
||||||
@@ -34,7 +34,7 @@ export default function WebAgency2Page() {
|
|||||||
brandName="Grow With Social"
|
brandName="Grow With Social"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Domov", id: "/" },
|
{ name: "Domov", id: "/" },
|
||||||
{ 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" }
|
||||||
@@ -261,10 +261,35 @@ 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: "Kontaktujte nás", href: "/contact" }]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{/* New section for displaying contact details on the main site */}
|
||||||
|
<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"
|
||||||
@@ -273,7 +298,7 @@ export default function WebAgency2Page() {
|
|||||||
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: "Kontakt", href: "/contact" }
|
{ label: "Kontakt", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -298,4 +323,4 @@ export default function WebAgency2Page() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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-manrope), sans-serif;
|
font-family: var(--font-inter), 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-manrope), sans-serif;
|
font-family: var(--font-montserrat), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user