Initial commit
This commit is contained in:
106
index.html
Normal file
106
index.html
Normal file
@@ -0,0 +1,106 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de" class="scroll-smooth">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Riboneo | Roberto de Marco</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<link
|
||||
href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<script>
|
||||
tailwind.config = {
|
||||
darkMode: "class",
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: "#2E5B43",
|
||||
secondary: "#ECE7D5",
|
||||
accent1: "#4E90A4",
|
||||
accent2: "#A36B5E",
|
||||
"background-light": "#FAFAF9",
|
||||
"background-dark": "#121212",
|
||||
},
|
||||
fontFamily: {
|
||||
display: ["Playfair Display", "serif"],
|
||||
sans: ["Inter", "sans-serif"],
|
||||
},
|
||||
borderRadius: {
|
||||
DEFAULT: "0.5rem",
|
||||
xl: "1rem",
|
||||
"2xl": "1.5rem",
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
body {
|
||||
font-family: "Inter", sans-serif;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
.font-serif {
|
||||
font-family: "Playfair Display", serif;
|
||||
}
|
||||
.glass-effect {
|
||||
backdrop-filter: blur(12px);
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
}
|
||||
.dark .glass-effect {
|
||||
background: rgba(18, 18, 18, 0.9);
|
||||
}
|
||||
.hero-gradient {
|
||||
background: linear-gradient(
|
||||
to bottom,
|
||||
rgba(14, 28, 20, 0.3) 0%,
|
||||
rgba(14, 28, 20, 0.6) 100%
|
||||
);
|
||||
}
|
||||
.hide-scrollbar::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
.hide-scrollbar {
|
||||
-ms-overflow-style: none;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
.fill-1 {
|
||||
font-variation-settings: "FILL" 1;
|
||||
}
|
||||
|
||||
/* New CSS Corner Shapes Implementation */
|
||||
.shape-squircle {
|
||||
border-radius: 1.5rem !important;
|
||||
corner-shape: squircle;
|
||||
}
|
||||
</style>
|
||||
<script type="importmap">
|
||||
{
|
||||
"imports": {
|
||||
"react-dom/": "https://esm.sh/react-dom@^19.2.4/",
|
||||
"react/": "https://esm.sh/react@^19.2.4/",
|
||||
"react": "https://esm.sh/react@^19.2.4"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<link rel="stylesheet" href="/index.css">
|
||||
</head>
|
||||
<body
|
||||
class="bg-background-light dark:bg-background-dark text-slate-800 dark:text-slate-200 transition-colors duration-300"
|
||||
>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/index.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user