File size: 1,795 Bytes
49335b4 36e1e48 49335b4 36e1e48 49335b4 36e1e48 49335b4 36e1e48 49335b4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>eUM : Open Perflexity</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
height: 100vh;
}
header {
background-color: #f8f9fa;
padding: 0.5rem;
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
display: flex;
align-items: center;
gap: 1rem;
font-size: 0.8rem;
}
.header-text {
flex: 1;
}
h1 {
font-size: 1rem;
margin-bottom: 0.25rem;
}
p {
color: #666;
font-size: 0.8rem;
}
.visitor-badge {
margin-right: 0.5rem;
}
iframe {
flex: 1;
width: 100%;
border: none;
}
</style>
</head>
<body>
<header>
<div class="header-text">
<h1>eUM : Open Perflexity</h1>
<p>Powered by Vidraft 🏢 Community: <a href="https://discord.gg/openfreeai" target="_blank">https://discord.gg/openfreeai</a></p>
</div>
<div class="visitor-badge">
<a href="https://visitorbadge.io/status?path=https%3A%2F%2FVIDraft-eum.hf.space">
<img src="https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2FVIDraft-eum.hf.space&countColor=%23263759" />
</a>
</div>
</header>
<iframe src="https://eum-lovat.vercel.app" allowfullscreen></iframe>
</body>
</html> |