diff --git a/src/layouts/Main.astro b/src/layouts/Main.astro index 22d7e3f..10cee34 100644 --- a/src/layouts/Main.astro +++ b/src/layouts/Main.astro @@ -58,13 +58,25 @@ const { diff --git a/src/pages/about.astro b/src/pages/about.astro index 48a837d..eeff7b2 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -1,4 +1,5 @@ --- +import { Image } from "astro:assets"; import Main from "../layouts/Main.astro"; --- @@ -8,7 +9,8 @@ import Main from "../layouts/Main.astro"; description="Lawrence Bethlenfalvy, software engineer" >
- My face

My name is Lawrence Bethlenfalvy, I make websites and web-based applications primarily diff --git a/src/pages/projects.astro b/src/pages/projects.astro index f1bfb5b..f1ee4cd 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -1,6 +1,7 @@ --- import { getCollection, render } from "astro:content"; import Main from "../layouts/Main.astro"; +import { Image } from "astro:assets"; const projects = await getCollection("projects"); const projReady = await Promise.all( @@ -14,9 +15,10 @@ const projReady = await Promise.all( projReady.map(([proj, Content]) => (

- {proj.data.image && } diff --git a/tailwind.config.mjs b/tailwind.config.mjs deleted file mode 100644 index 39396e5..0000000 --- a/tailwind.config.mjs +++ /dev/null @@ -1,5 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -export default { - content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], - -}