diff --git a/public/favicon.svg b/public/favicon.svg deleted file mode 100644 index 0f39062..0000000 --- a/public/favicon.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/public/logo.png b/public/logo.png new file mode 100644 index 0000000..10adca3 Binary files /dev/null and b/public/logo.png differ diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 4016525..c2e338c 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,21 +1,38 @@ --- -export interface Props { - title: string; -} - -const { title } = Astro.props; --- - + - - - - - {title} + + xHyroM + + + + + + + + + + + + + + + + - + diff --git a/src/pages/index.astro b/src/pages/index.astro index 412cc4a..6993d74 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,81 +1,18 @@ --- -import Layout from '../layouts/Layout.astro'; -import Card from '../components/Card.astro'; +import Layout from "../layouts/Layout.astro"; +import { Image, Picture } from "@astrojs/image/components"; --- -
-

Welcome to Astro

-

- To get started, open the directory src/pages in your project.
- Code Challenge: Tweak the "Welcome to Astro" message above. -

- -
+
+ descriptive text +

xHyroM

+
- - diff --git a/tailwind.config.cjs b/tailwind.config.cjs index f5368a7..72c3d5d 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -1,8 +1,12 @@ /** @type {import('tailwindcss').Config} */ module.exports = { - content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], - theme: { - extend: {}, - }, - plugins: [], -} + content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"], + theme: { + extend: { + colors: { + dark: "#0D0D0D", + }, + }, + }, + plugins: [], +};