feat(web): add private company and portfolio presence

This commit is contained in:
Jan Wagner
2026-08-16 00:35:49 +02:00
parent f8c5aa0426
commit 3a1154ef03
8 changed files with 390 additions and 83 deletions
+31 -12
View File
@@ -1,26 +1,45 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
/* Tech Style Dark Theme by Default */
--background: #020617; /* Slate 950 */
--foreground: #f8fafc; /* Slate 50 */
/* Primary Action Colors (Electric Blue / Cyan) */
--primary: #0ea5e9;
--primary-foreground: #ffffff;
/* Metallic / Professional Accents */
--accent: #334155; /* Slate 700 */
--accent-foreground: #f8fafc;
--border: #1e293b; /* Slate 800 */
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
--color-primary: var(--primary);
--color-primary-foreground: var(--primary-foreground);
--color-accent: var(--accent);
--color-accent-foreground: var(--accent-foreground);
--color-border: var(--border);
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
--font-sans: var(--font-geist-sans), ui-sans-serif, system-ui, sans-serif;
--font-mono: var(--font-geist-mono), ui-monospace, SFMono-Regular, monospace;
}
body {
background: var(--background);
background-color: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
font-family: var(--font-sans);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Subtle Grid Background for that "Tech" feel */
.bg-grid-pattern {
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
background-size: 40px 40px;
}