Files
MotionWebStudio/index.html
2026-01-06 20:13:30 +01:00

80 lines
3.5 KiB
HTML

<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%237c3aed;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%233b82f6;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='32' height='32' rx='8' fill='url(%23grad)'/%3E%3Cpath d='M22 20l4-4-4-4M10 12l-4 4 4 4M18.5 8l-5 16' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MotionWeb | Gyors honlapkészítés & professzionális weboldalak</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Készíttessen professzionális, SEO-optimalizált weboldalt gyorsan a MotionWeb félautomata technológiájával. Fix árak, rejtett költségek nélkül. Indítsa el vállalkozását online!" />
<meta name="keywords" content="weboldal készítés, gyors honlapkészítés, olcsó weboldal, olcsó honlapkészítés, félautomata weboldal, professzionális weboldal, SEO, MotionWeb" />
<meta name="author" content="Motion Web Stúdió" />
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#7c3aed', // lila (violet-600)
dark: '#6d28d9', // violet-700
},
secondary: {
DEFAULT: '#3b82f6', // kék (blue-500)
dark: '#2563eb', // blue-600
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
keyframes: {
fadeInUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
}
},
animation: {
'fade-in-up': 'fadeInUp 0.8s ease-out both',
'fade-in': 'fadeIn 1.2s ease-out both',
'bounce-slow': 'bounce 3s infinite',
}
}
}
}
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">
<style>
body { font-family: 'Inter', sans-serif; }
</style>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@18.2.0",
"react/jsx-runtime": "https://esm.sh/react@18.2.0/jsx-runtime",
"react-dom/client": "https://esm.sh/react-dom@18.2.0/client",
"react-dom": "https://esm.sh/react-dom@18.2.0",
"react-router-dom": "https://esm.sh/react-router-dom@6.22.3?deps=react@18.2.0,react-dom@18.2.0",
"lucide-react": "https://esm.sh/lucide-react@0.344.0?deps=react@18.2.0",
"@supabase/supabase-js": "https://esm.sh/@supabase/supabase-js@2.39.7",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"react/": "https://esm.sh/react@^19.2.3/",
"@google/genai": "https://esm.sh/@google/genai@^1.34.0"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>