docs: overwrite README with project description and centered preview image
All checks were successful
Deploy to Production / deploy (push) Successful in 5s
All checks were successful
Deploy to Production / deploy (push) Successful in 5s
This commit is contained in:
38
index.html
38
index.html
@@ -1,13 +1,31 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/src/assets/rubic-cube.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Rubic Cube</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.js"></script>
|
||||
</body>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/png" href="/favicon.png" sizes="32x32" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Rubic Cube Logic Engine</title>
|
||||
|
||||
<meta name="description"
|
||||
content="A 3D interactive Rubik's Cube simulator and solver powered by a custom mathematical engine." />
|
||||
<!-- Open Graph (for social media sharing like Facebook/Discord) -->
|
||||
<meta property="og:title" content="Rubic Cube Logic Engine" />
|
||||
<meta property="og:description"
|
||||
content="A 3D interactive Rubik's Cube simulator and solver powered by a custom mathematical engine." />
|
||||
<meta property="og:image" content="/preview.png" />
|
||||
<meta property="og:type" content="website" />
|
||||
<!-- Twitter Cards -->
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta name="twitter:title" content="Rubic Cube Logic Engine" />
|
||||
<meta name="twitter:description"
|
||||
content="A 3D interactive Rubik's Cube simulator and solver powered by a custom mathematical engine." />
|
||||
<meta name="twitter:image" content="/preview.png" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user