Compare commits
8 Commits
version_15
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 61c0e76e81 | |||
| 176316f960 | |||
| e5c78ca4c7 | |||
| e2fd8b6e82 | |||
| 49c92bb60f | |||
| 6101cb5ab7 | |||
| 62a62eb2c0 | |||
| 244e3d612d |
@@ -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
|
||||||
|
|||||||
@@ -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" }
|
||||||
@@ -298,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" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -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