Initial upload of bennys production files

This commit is contained in:
2025-11-18 19:44:37 +00:00
parent 77b206e795
commit 3a9ce0821a
9749 changed files with 1677047 additions and 0 deletions

BIN
static/Headshot.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 KiB

BIN
static/IMG_2149.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 MiB

BIN
static/IMG_2153.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 MiB

BIN
static/IMG_2158.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

BIN
static/Profile.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 MiB

BIN
static/buffteks.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

2
static/css/app.css Normal file

File diff suppressed because one or more lines are too long

45
static/css/tailwind.css Normal file
View File

@@ -0,0 +1,45 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
/* --- Design tokens (light/dark) --- */
@layer base {
:root {
--bg: 10 10 10;
--fg: 245 245 245;
--muted: 165 165 165;
--accent: 249 115 22; /* orange-500 */
--border: 38 38 38;
--card: 18 18 18;
}
:root[data-theme="light"] {
--bg: 255 255 255;
--fg: 17 17 17;
--muted: 115 115 115;
--accent: 234 88 12; /* orange-600 */
--border: 229 231 235;
--card: 250 250 250;
}
html, body { height: 100%; }
body { background: rgb(var(--bg)); color: rgb(var(--fg)); }
}
/* --- Component classes --- */
@layer components {
.container-page { @apply max-w-7xl mx-auto px-4 sm:px-6 lg:px-8; }
.btn { @apply inline-flex items-center gap-2 rounded-xl px-4 py-2 font-medium border transition; }
.btn-primary { @apply border-transparent bg-[rgb(var(--accent))] text-white hover:opacity-90; }
.btn-ghost { @apply border-[rgb(var(--border))] bg-transparent text-[rgb(var(--fg))] hover:bg-[rgb(var(--card))]; }
.card { @apply rounded-2xl border border-[rgb(var(--border))] bg-[rgb(var(--card))] p-6 shadow; }
.heading-hero { @apply font-extrabold tracking-tight text-4xl sm:text-6xl; }
.subtle { color: rgb(var(--muted)); }
.nav-link { @apply text-sm text-[rgb(var(--muted))] hover:text-[rgb(var(--fg))] transition; }
}
/* --- Pretty shadow --- */
@layer utilities {
.shadow-glass { box-shadow: 0 8px 30px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.06); }
}

1
static/favicon.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><rect width="64" height="64" rx="12" fill="#fff"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-family="Arial, Helvetica, sans-serif" font-size="28" fill="#000">BH</text></svg>

After

Width:  |  Height:  |  Size: 266 B

70
static/src/app.css Normal file
View File

@@ -0,0 +1,70 @@
/* Tailwind v4 entry */
@import "tailwindcss";
/* Tell Tailwind where to scan */
@source "./templates/**/*.html";
@source "./app.py";
/* Base */
:root { --bg: #0a0a0a; }
html, body { background: var(--bg); }
.font-bebas { font-family: "Bebas Neue", ui-sans-serif, system-ui; }
/* Custom utilities */
.bg-grid {
background-image:
linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
background-size: 48px 48px;
background-position: -1px -1px;
}
.mask-fade {
-webkit-mask-image: linear-gradient(to bottom, black, rgba(0,0,0,.85) 40%, transparent 80%);
mask-image: linear-gradient(to bottom, black, rgba(0,0,0,.85) 40%, transparent 80%);
}
.glass {
backdrop-filter: blur(12px);
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.12);
}
.dot { display: inline-flex; align-items: center; gap: .5rem; }
.dot::before {
content: "";
width: .5rem; height: .5rem; border-radius: 9999px;
background: rgb(52 211 153);
}
/* Components (no @apply of custom classes) */
.btn-primary {
@apply inline-flex items-center justify-center rounded-xl bg-white text-black font-semibold transition;
/* padding utilities in @apply are fine too; using raw CSS keeps it simple */
padding: 0.75rem 1.25rem; /* = py-3 px-5 */
}
.btn-ghost {
@apply inline-flex items-center justify-center rounded-xl font-semibold transition;
/* bring 'glass' styles in directly */
backdrop-filter: blur(12px);
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.12);
padding: 0.75rem 1.25rem;
}
.label { @apply text-sm text-white/70; }
.input,
.textarea {
@apply w-full mt-1 border border-white/10 rounded-xl px-4 py-3 outline-none focus:border-white/30;
background: rgba(255,255,255,.05);
}
.link { @apply underline underline-offset-4 hover:no-underline; }
/* Cards */
.card {
@apply rounded-2xl p-6;
/* include glass effect here too */
backdrop-filter: blur(12px);
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.12);
}
.card-title { @apply font-semibold text-lg; }
.card-body { @apply mt-2 text-sm text-white/80; }
.card-list { @apply mt-4 space-y-2 text-sm text-white/70 list-disc pl-4; }

3
static/src/min.css Normal file
View File

@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

28
static/tailwind.config.js Normal file
View File

@@ -0,0 +1,28 @@
module.exports = {
content: ["./templates/**/*.html", "./static/js/**/*.js"],
theme: {
extend: {
fontFamily: {
display: ['"Bebas Neue"', "Inter", "system-ui", "sans-serif"],
sans: ["Inter", "system-ui", "sans-serif"],
archivo: ['Archivo', 'sans-serif'],
},
backgroundImage: {
'bh-hero': 'linear-gradient(to bottom right, rgba(249,115,22,0.2), rgba(244,63,94,0.1), rgba(217,70,239,0.1))',
},
colors: {
bg: "rgb(var(--bg))",
fg: "rgb(var(--fg))",
accent: "rgb(var(--accent))",
card: "rgb(var(--card))",
border: "rgb(var(--border))",
},
boxShadow: {
glass: "0 8px 30px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.06)",
},
borderRadius: { xl: "1rem", "2xl": "1.25rem" },
},
},
plugins: [],
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 483 KiB