diff --git a/index.html b/index.html index 5bee704..81c1659 100644 --- a/index.html +++ b/index.html @@ -7,12 +7,6 @@ Walk By Faith - - -
diff --git a/package-lock.json b/package-lock.json index a038a30..66d8e2d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -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", diff --git a/package.json b/package.json index 0c48d5d..5dadb88 100644 --- a/package.json +++ b/package.json @@ -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" } diff --git a/src/main.tsx b/src/main.tsx index 88611b8..591d05a 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -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'