diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-01 16:31:27 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-01 16:31:27 -0700 |
commit | 5148ee2063846d37f9152a9dfa64fcd40cc0454b (patch) | |
tree | ba19032f6296c97e9dd8ce91253886bf24d5b441 /index.html | |
parent | 17e95224a083ccd9e522f8712bb10846a2dada8a (diff) | |
download | the-abstraction-engine-5148ee2063846d37f9152a9dfa64fcd40cc0454b.tar.gz the-abstraction-engine-5148ee2063846d37f9152a9dfa64fcd40cc0454b.zip |
get something on the screen
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 24 |
1 files changed, 13 insertions, 11 deletions
@@ -1,13 +1,15 @@ -<!doctype html> +<!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" /> - <title>Vite + React + TS</title> - </head> - <body> - <div id="root"></div> - <script type="module" src="/src/main.tsx"></script> - </body> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content= + "width=device-width, initial-scale=1.0"> + <title>The Abstraction Engine</title> + <link rel="icon" href= + "data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>📚</text></svg>"> +</head> +<body data-theme="dark"> + <div id="root"></div> + <script type="module" src="/src/main.tsx"></script> +</body> </html> |