-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (43 loc) · 1.78 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Discover practical examples of Material-UI components for specific use cases." />
<meta name="keywords" content="mui, material-ui, tricks, components, ui design, react, examples, tutorials, duoquote">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="MUI Tricks">
<meta property="og:description"
content="Discover practical examples of Material-UI components for specific use cases.">
<meta property="og:image" content="%BASE_URL%preview.png">
<meta property="og:url" content="https://your-website.com/mui-tricks">
<meta property="og:type" content="website">
<meta property="og:site_name" content="MUI Tricks">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="MUI Tricks">
<meta name="twitter:description"
content="Discover practical examples of Material-UI components for specific use cases.">
<meta name="twitter:image" content="%BASE_URL%preview.png">
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" />
<style>
html,
body,
#root {
height: 100%;
}
.font-mono {
font-family: 'Roboto Mono', monospace;
}
</style>
<title>MUI Tricks</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>