Compare commits
6 Commits
version_15
...
version_16
| Author | SHA1 | Date | |
|---|---|---|---|
| 176316f960 | |||
| e5c78ca4c7 | |||
| 49c92bb60f | |||
| 6101cb5ab7 | |||
| 62a62eb2c0 | |||
| 244e3d612d |
@@ -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" }
|
||||
]
|
||||
},
|
||||
|
||||
@@ -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" }
|
||||
]
|
||||
},
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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" }
|
||||
]
|
||||
},
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user