removed external dep

This commit is contained in:
h202-wq
2026-08-19 08:04:56 -04:00
parent f93fc323a7
commit 1a79f44a0e
4 changed files with 27 additions and 6 deletions
-6
View File
@@ -7,12 +7,6 @@
<meta name="description" content="One verse of scripture is appointed for each day. Seek it." />
<meta name="theme-color" content="#0b0806" />
<title>Walk By Faith</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400..700&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="app"></div>
+20
View File
@@ -8,6 +8,8 @@
"name": "walkbyfaith",
"version": "0.0.0",
"dependencies": {
"@fontsource/cinzel": "^5.3.0",
"@fontsource/eb-garamond": "^5.3.0",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
@@ -19,6 +21,24 @@
"vite": "^8.2.0"
}
},
"node_modules/@fontsource/cinzel": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@fontsource/cinzel/-/cinzel-5.3.0.tgz",
"integrity": "sha512-KEOYTsrRppW0uRIPWBDPrQgunCS6f8u4nzZxYRBfo9SCknKojLYjK7B0ZoVmJhyVLefz271ZQRF9EOpHZlfhRw==",
"license": "OFL-1.1",
"funding": {
"url": "https://github.com/sponsors/ayuhito"
}
},
"node_modules/@fontsource/eb-garamond": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@fontsource/eb-garamond/-/eb-garamond-5.3.0.tgz",
"integrity": "sha512-VplwHpB8FLuzl+4G5LDci1b3Z4SghiuXH8XEgaxjnOb5aue5mEt1njmDKeO6iyLeGa73LffU7PC7hzncLRx0ZA==",
"license": "OFL-1.1",
"funding": {
"url": "https://github.com/sponsors/ayuhito"
}
},
"node_modules/@oxc-project/types": {
"version": "0.144.0",
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.144.0.tgz",
+2
View File
@@ -16,6 +16,8 @@
"vite": "^8.2.0"
},
"dependencies": {
"@fontsource/cinzel": "^5.3.0",
"@fontsource/eb-garamond": "^5.3.0",
"react": "^19.2.8",
"react-dom": "^19.2.8"
}
+5
View File
@@ -1,5 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import '@fontsource/eb-garamond/latin-400.css'
import '@fontsource/eb-garamond/latin-400-italic.css'
import '@fontsource/eb-garamond/latin-500.css'
import '@fontsource/cinzel/latin-400.css'
import '@fontsource/cinzel/latin-600.css'
import './style.css'
import App from './App'