diff --git a/src/app.html b/src/app.html index 77a5ff5..c271083 100644 --- a/src/app.html +++ b/src/app.html @@ -3,6 +3,9 @@ + + + %sveltekit.head% diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 3878dfb..bb4e508 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -1,6 +1,9 @@ - + \ No newline at end of file diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 5982b0a..e83ffc7 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,2 +1,5 @@ -

Welcome to SvelteKit

-

Visit kit.svelte.dev to read the documentation

+
+

Welcome to my personal webpage

+

My name is Christian and I live in Copenhagen. In my professional life, I recruit in product and engineering. +

+
\ No newline at end of file diff --git a/src/routes/about/+page.svelte b/src/routes/about/+page.svelte new file mode 100644 index 0000000..ede7791 --- /dev/null +++ b/src/routes/about/+page.svelte @@ -0,0 +1 @@ +

This is the about page

\ No newline at end of file diff --git a/src/routes/login/+page.svelte b/src/routes/login/+page.svelte new file mode 100644 index 0000000..4b96f75 --- /dev/null +++ b/src/routes/login/+page.svelte @@ -0,0 +1 @@ +

This is the login page

\ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index c7c270f..b31c66e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -2,7 +2,11 @@ export default { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { - extend: {}, + extend: { + fontFamily: { + "jose": ["Josefin Sans", "sans-serif"] + } + }, }, plugins: [], }