8 Commits

Author SHA1 Message Date
61c0e76e81 Merge version_16 into main
Merge version_16 into main
2026-06-12 10:35:37 +00:00
176316f960 Update theme fonts 2026-06-12 10:35:34 +00:00
e5c78ca4c7 Update theme fonts 2026-06-12 10:35:33 +00:00
e2fd8b6e82 Merge version_16 into main
Merge version_16 into main
2026-06-12 10:27:55 +00:00
49c92bb60f Update src/app/page.tsx 2026-06-12 10:27:51 +00:00
6101cb5ab7 Update src/app/contact/page.tsx 2026-06-12 10:27:51 +00:00
62a62eb2c0 Update src/app/about/page.tsx 2026-06-12 10:27:50 +00:00
244e3d612d Merge version_15 into main
Merge version_15 into main
2026-06-12 10:25:29 +00:00
5 changed files with 16 additions and 11 deletions

View File

@@ -11,7 +11,7 @@ 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" }
@@ -22,7 +22,7 @@ export default function AboutPage() {
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
{ label: "Work", href: "/#work" },
{ label: "Contact", href: "/contact" }
]
},

View File

@@ -10,7 +10,7 @@ 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" }
@@ -21,7 +21,7 @@ export default function ContactPage() {
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
{ label: "Work", href: "/#work" },
{ label: "Contact", href: "/contact" }
]
},

View File

@@ -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"],
});
@@ -37,7 +42,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
{children}
<script

View File

@@ -34,7 +34,7 @@ export default function WebAgency2Page() {
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" }
@@ -298,7 +298,7 @@ export default function WebAgency2Page() {
title: "Spoločnosť", items: [
{ label: "O nás", href: "/about" },
{ label: "Služby", href: "#services" },
{ label: "Práca", href: "#work" },
{ label: "Kontakt", href: "/contact" }
]
},

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-manrope), 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-manrope), sans-serif;
font-family: var(--font-montserrat), sans-serif;
}