Fixed css imports

This commit is contained in:
Tom Butcher 2025-04-06 13:51:18 +01:00
parent 88f92bc0d6
commit 29b0ab533c
4 changed files with 7 additions and 34 deletions

View File

@ -16,6 +16,8 @@
rel="apple-touch-icon" rel="apple-touch-icon"
href="https://cdn.tombutcher.work/favicon/favicon192.png" href="https://cdn.tombutcher.work/favicon/favicon192.png"
/> />
<link rel="stylesheet" href="/global.css" />
<link rel="stylesheet" href="/fonts.css" />
<link rel="manifest" href="/manifest.json" /> <link rel="manifest" href="/manifest.json" />
<title>TOM BUTCHER</title> <title>TOM BUTCHER</title>
</head> </head>

View File

@ -1,10 +1,9 @@
import { StrictMode } from 'react' import { StrictMode } from "react";
import { createRoot } from 'react-dom/client' import { createRoot } from "react-dom/client";
import './index.css' import App from "./App.jsx";
import App from './App.jsx'
createRoot(document.getElementById('root')).render( createRoot(document.getElementById("root")).render(
<StrictMode> <StrictMode>
<App /> <App />
</StrictMode>, </StrictMode>,
) );

View File

@ -1,26 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link
rel="icon"
href="https://cdn.tombutcher.work/favicon/favicon.ico"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover"
/>
<meta name="description" content="Tom Butcher's Personal Website" />
<link
rel="apple-touch-icon"
href="https://cdn.tombutcher.work/favicon/favicon192.png"
/>
<link rel="manifest" href="/manifest.json" />
<title>TOM BUTCHER</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>

View File

@ -5,8 +5,6 @@ import { createRoot } from "react-dom/client";
import { KeycloakProvider } from "./utils/KeycloakProvider"; import { KeycloakProvider } from "./utils/KeycloakProvider";
import App from "./App.jsx"; import App from "./App.jsx";
import "antd/dist/reset.css"; // Import Ant Design styles import "antd/dist/reset.css"; // Import Ant Design styles
import "../public/global.css";
import "../public/fonts.css";
ReactGA.initialize("G-MN5S04W1HB"); ReactGA.initialize("G-MN5S04W1HB");