Fixed css imports
This commit is contained in:
parent
88f92bc0d6
commit
29b0ab533c
@ -16,6 +16,8 @@
|
||||
rel="apple-touch-icon"
|
||||
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" />
|
||||
<title>TOM BUTCHER</title>
|
||||
</head>
|
||||
|
||||
11
main.jsx
11
main.jsx
@ -1,10 +1,9 @@
|
||||
import { StrictMode } from 'react'
|
||||
import { createRoot } from 'react-dom/client'
|
||||
import './index.css'
|
||||
import App from './App.jsx'
|
||||
import { StrictMode } from "react";
|
||||
import { createRoot } from "react-dom/client";
|
||||
import App from "./App.jsx";
|
||||
|
||||
createRoot(document.getElementById('root')).render(
|
||||
createRoot(document.getElementById("root")).render(
|
||||
<StrictMode>
|
||||
<App />
|
||||
</StrictMode>,
|
||||
)
|
||||
);
|
||||
|
||||
@ -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>
|
||||
@ -5,8 +5,6 @@ import { createRoot } from "react-dom/client";
|
||||
import { KeycloakProvider } from "./utils/KeycloakProvider";
|
||||
import App from "./App.jsx";
|
||||
import "antd/dist/reset.css"; // Import Ant Design styles
|
||||
import "../public/global.css";
|
||||
import "../public/fonts.css";
|
||||
|
||||
ReactGA.initialize("G-MN5S04W1HB");
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user