mirror of
https://github.com/KeyZox71/knl_meowscendence.git
synced 2025-08-16 13:32:53 +02:00
「🏗️」 wip: working vite + tailwinds
This commit is contained in:
19
src/front/index.html
Normal file
19
src/front/index.html
Normal file
@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Vite + Tailwind Test</title>
|
||||
<link href="/style.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body class="bg-gray-100 flex items-center justify-center min-h-screen">
|
||||
<div class="text-center p-10 bg-white rounded-xl shadow space-y-4">
|
||||
<h1 class="text-4xl font-bold text-blue-600">Vite + Tailwind</h1>
|
||||
<p class="text-gray-700 text-lg">🚀 Looks like it's working!</p>
|
||||
<button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded">
|
||||
Click Me
|
||||
</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
3
src/front/style.css
Normal file
3
src/front/style.css
Normal file
@ -0,0 +1,3 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
Reference in New Issue
Block a user