forked from LitenTechnologies/matrimony-flutter-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreview.html
More file actions
78 lines (77 loc) · 2.18 KB
/
preview.html
File metadata and controls
78 lines (77 loc) · 2.18 KB
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
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bright Weddings - Matrimony App</title>
<style>
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #FFA726, #FF7043);
color: white;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.container {
max-width: 500px;
padding: 40px;
}
.logo {
font-size: 48px;
margin-bottom: 20px;
}
.title {
font-size: 32px;
font-weight: bold;
margin-bottom: 10px;
}
.subtitle {
font-size: 18px;
margin-bottom: 40px;
opacity: 0.9;
}
.app-link {
display: inline-block;
background: rgba(255,255,255,0.2);
padding: 15px 30px;
border-radius: 25px;
text-decoration: none;
color: white;
font-weight: bold;
transition: background 0.3s;
}
.app-link:hover {
background: rgba(255,255,255,0.3);
}
.preview-note {
margin-top: 30px;
font-size: 14px;
opacity: 0.7;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">💕</div>
<div class="title">Bright Weddings</div>
<div class="subtitle">Find your perfect match with our trusted matrimony services</div>
<a href="index.html" class="app-link">Launch Matrimony App</a>
<div class="preview-note">
✨ Full Flutter Web Application<br>
🔥 Firebase Authentication<br>
💕 Matrimony Platform
</div>
</div>
<script>
// Auto-redirect to main app after 3 seconds
setTimeout(() => {
window.location.href = 'index.html';
}, 3000);
</script>
</body>
</html>