Compare commits
7 Commits
version_16
...
version_18
| Author | SHA1 | Date | |
|---|---|---|---|
| b8f581eb3a | |||
| 5743be49c3 | |||
| d62f65c4c3 | |||
| c9543c7c85 | |||
| 477f440f3d | |||
| ee8ac92a36 | |||
| 3f6ab53cfa |
@@ -1,8 +1,15 @@
|
||||
import type { Metadata } from "next";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "WOLNY STUDIO AI", description: "Budujemy systemy, które zarabiają dla Twojej firmy."
|
||||
@@ -15,7 +22,7 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="pl">
|
||||
<body className={inter.className}>{children}
|
||||
<body className={`${dmSans.variable} ${inter.variable}`}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -30,12 +30,9 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="WOLNY STUDIO AI"
|
||||
navItems={[
|
||||
{ name: "Usługi", id: "services" },
|
||||
{ name: "Start", id: "hero" },
|
||||
{ name: "Realizacje", id: "cases" },
|
||||
{ name: "Proces", id: "process" },
|
||||
{ name: "O nas", id: "about" },
|
||||
{ name: "Kontakt", id: "contact" },
|
||||
{ name: "Rozpocznij projekt", id: "/rozpocznij-projekt" }
|
||||
{ name: "Rozpocznij projekt", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Rajcza, Polska"
|
||||
bottomRightText="wsa.labs.wolny@gmail.com"
|
||||
@@ -51,7 +48,7 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Rozpocznij projekt", href: "/rozpocznij-projekt" },
|
||||
{ text: "Rozpocznij projekt", href: "contact" },
|
||||
{ text: "Zobacz realizacje", href: "cases" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -109,15 +106,15 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
icon: Code2,
|
||||
title: "Systemy i Aplikacje Webowe", description: "Dedykowane platformy, CRM, systemy zarządzania, panele klienta. Rozwiązania stworzone pod Twoją firmę.", button: { text: "Oszczędź 20h/tydzień", href: "/rozpocznij-projekt" }
|
||||
title: "Systemy i Aplikacje Webowe", description: "Dedykowane platformy, CRM, systemy zarządzania, panele klienta. Rozwiązania stworzone pod Twoją firmę.", button: { text: "Oszczędź 20h/tydzień", href: "contact" }
|
||||
},
|
||||
{
|
||||
icon: Brain,
|
||||
title: "Automatyzacje i AI", description: "Boty AI, automatyczna obsługa klienta, scoring CV, workflow, integracje API. Procesy które pracują 24/7.", button: { text: "Zwiększ Przychód o 40%", href: "/rozpocznij-projekt" }
|
||||
title: "Automatyzacje i AI", description: "Boty AI, automatyczna obsługa klienta, scoring CV, workflow, integracje API. Procesy które pracują 24/7.", button: { text: "Zwiększ Przychód o 40%", href: "contact" }
|
||||
},
|
||||
{
|
||||
icon: TrendingUp,
|
||||
title: "Digitalizacja Biznesu", description: "Zamieniamy Excel i papier na nowoczesne systemy online. Porządek operacyjny, lepsze decyzje.", button: { text: "Zmniejsz Koszty o 35%", href: "/rozpocznij-projekt" }
|
||||
title: "Digitalizacja Biznesu", description: "Zamieniamy Excel i papier na nowoczesne systemy online. Porządek operacyjny, lepsze decyzje.", button: { text: "Zmniejsz Koszty o 35%", href: "contact" }
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
|
||||
@@ -59,12 +59,9 @@ export default function RozpocznijProjektPage() {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="WOLNY STUDIO AI"
|
||||
navItems={[
|
||||
{ name: "Usługi", id: "services" },
|
||||
{ name: "Start", id: "hero" },
|
||||
{ name: "Realizacje", id: "cases" },
|
||||
{ name: "Proces", id: "process" },
|
||||
{ name: "O nas", id: "about" },
|
||||
{ name: "Kontakt", id: "contact" },
|
||||
{ name: "Rozpocznij projekt", id: "/rozpocznij-projekt" }
|
||||
{ name: "Rozpocznij projekt", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Rajcza, Polska"
|
||||
bottomRightText="wsa.labs.wolny@gmail.com"
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user