11 Commits

Author SHA1 Message Date
b8f581eb3a Update src/app/rozpocznij-projekt/page.tsx 2026-03-05 16:22:32 +00:00
5743be49c3 Update src/app/page.tsx 2026-03-05 16:22:31 +00:00
d62f65c4c3 Merge version_17 into main
Merge version_17 into main
2026-03-05 16:07:44 +00:00
c9543c7c85 Update src/app/styles/base.css 2026-03-05 16:07:39 +00:00
477f440f3d Update src/app/layout.tsx 2026-03-05 16:07:38 +00:00
ee8ac92a36 Merge version_16 into main
Merge version_16 into main
2026-03-05 15:51:08 +00:00
26d6340560 Update src/app/rozpocznij-projekt/page.tsx 2026-03-05 15:51:04 +00:00
f9282ddc55 Update src/app/page.tsx 2026-03-05 15:51:04 +00:00
3f6ab53cfa Merge version_16 into main
Merge version_16 into main
2026-03-05 15:46:58 +00:00
e03963c67b Update src/app/rozpocznij-projekt/page.tsx 2026-03-05 15:46:54 +00:00
335a44521b Merge version_15 into main
Merge version_15 into main
2026-03-05 15:39:36 +00:00
4 changed files with 25 additions and 23 deletions

View File

@@ -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: `

View File

@@ -30,15 +30,12 @@ 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="Warszawa, Polska"
bottomRightText="hello@walnystudio.ai"
bottomLeftText="Rajcza, Polska"
bottomRightText="wsa.labs.wolny@gmail.com"
/>
</div>
@@ -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"
@@ -384,7 +381,7 @@ export default function LandingPage() {
socialLinks={[
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" },
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" },
{ icon: Mail, href: "mailto:hello@walnystudio.ai", ariaLabel: "Email" }
{ icon: Mail, href: "mailto:wsa.labs.wolny@gmail.com", ariaLabel: "Email" }
]}
ariaLabel="Stopka strony"
/>

View File

@@ -59,14 +59,12 @@ export default function RozpocznijProjektPage() {
<NavbarStyleFullscreen
brandName="WOLNY STUDIO AI"
navItems={[
{ name: "Usługi", id: "/" },
{ name: "Realizacje", id: "/" },
{ name: "Proces", id: "/" },
{ name: "O nas", id: "/" },
{ name: "Kontakt", id: "/" }
{ name: "Start", id: "hero" },
{ name: "Realizacje", id: "cases" },
{ name: "Rozpocznij projekt", id: "contact" }
]}
bottomLeftText="Warszawa, Polska"
bottomRightText="hello@walnystudio.ai"
bottomLeftText="Rajcza, Polska"
bottomRightText="wsa.labs.wolny@gmail.com"
/>
</div>

View File

@@ -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;
}