diff --git a/src/app.css b/src/app.css index b5c61c9..a8da209 100644 --- a/src/app.css +++ b/src/app.css @@ -1,3 +1,5 @@ +@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); + @tailwind base; @tailwind components; @tailwind utilities; diff --git a/src/lib/logo.png b/src/lib/logo.png new file mode 100644 index 0000000..45eb56b Binary files /dev/null and b/src/lib/logo.png differ diff --git a/src/lib/logo2.png b/src/lib/logo2.png new file mode 100644 index 0000000..5c5dd3c Binary files /dev/null and b/src/lib/logo2.png differ diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index e551b53..0eb7c98 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -2,4 +2,18 @@ import '../app.css'; +
+ +
+ diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 5982b0a..e69de29 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,2 +0,0 @@ -

Welcome to SvelteKit

-

Visit kit.svelte.dev to read the documentation

diff --git a/tailwind.config.ts b/tailwind.config.ts index c32dc15..0981307 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -4,7 +4,11 @@ export default { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { - extend: {} + extend: { + fontFamily: { + cormorant: ['Cormorant Garamond', 'serif'] + } + } }, plugins: [require('@tailwindcss/typography')]