diff --git a/.vscode/settings.json b/.vscode/settings.json index 9d7c894..17235f6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -21,7 +21,7 @@ "[json]": { "editor.defaultFormatter": "biomejs.biome" }, - "[jsonc]": { + "[css]": { "editor.defaultFormatter": "biomejs.biome" } } diff --git a/src/pages/index.tsx b/src/pages/index.tsx index d10aed9..28b5ed0 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -4,8 +4,33 @@ import Layout from "src/layout"; export default function Home() { return ( -
-

Welcome to My Website

+
+
+

Katastema.

+

+ Simplicity and power +

+
+ +

+ Start editing src/pages/index.tsx +

+ + + + Github + + +
); diff --git a/src/styles.css b/src/styles.css index b5c61c9..837d18d 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1,3 +1,5 @@ +@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap"); + @tailwind base; @tailwind components; @tailwind utilities; diff --git a/tailwind.config.js b/tailwind.config.js index 54331dc..12b1d25 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -2,6 +2,16 @@ module.exports = { content: ["./src/**/*.{js,ts,jsx,tsx}"], theme: { + fontFamily: { + mono: ["Fira Code"], + }, + colors: { + "steel-grey": "#262335", + mirage: "#241C2F", + gold: "#F7DD71", + violet: "#EE84D6", + "light-coral": "#F77E72", + }, extend: {}, }, plugins: [],