-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (46 loc) · 2.13 KB
/
index.html
File metadata and controls
53 lines (46 loc) · 2.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Incial — We build brand, business, and beyond</title>
<meta name="description" content="Incial is a creative community where brands grow — creatively and strategically. We build brands, businesses, and beyond." />
<meta name="author" content="Incial" />
<meta name="keywords" content="branding, design, digital marketing, creative agency, brand identity, UI/UX" />
<meta property="og:title" content="Incial — We build brand, business, and beyond" />
<meta property="og:description" content="A creative community where brands grow — creatively and strategically." />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@incial" />
<meta name="twitter:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Caveat:wght@400;700&display=swap" rel="stylesheet" />
<style>
:root {
--color-black: #1a1a1a;
--color-white: #f5f5f5;
--color-blue: #3b82f6;
}
* {
font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 700;
}
body {
background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black) 50%, var(--color-white) 50%, var(--color-white) 80%, var(--color-blue) 80%, var(--color-blue) 100%);
color: var(--color-black);
margin: 0;
padding: 0;
line-height: 1.6;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>