Files
Reiseplanuing/public/index.html
2026-03-16 15:36:42 +01:00

42 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TravelDesk Intelligente Reiseplanung</title>
<!-- Tailwind CSS via CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
navy: '#1E3A5F',
accent: '#F97316',
surface: '#F8FAFC',
},
},
},
};
</script>
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css" />
</head>
<body class="bg-surface min-h-screen font-sans">
<div id="root"></div>
<!-- React + ReactDOM via CDN -->
<script crossorigin src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>
<!-- Babel für JSX im Browser -->
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<!-- App -->
<script type="text/babel" src="app.js"></script>
</body>
</html>