diff --git a/src/components/ProjectAim.astro b/src/components/ProjectAim.astro new file mode 100644 index 0000000..565432a --- /dev/null +++ b/src/components/ProjectAim.astro @@ -0,0 +1,29 @@ +--- +interface Props { + color: "blue" | "primary" | "brown" +} + +const { color } = Astro.props +--- + +
+ + + +
+

+
diff --git a/src/layouts/Home.astro b/src/layouts/Home.astro index 5d330d0..0ed6024 100644 --- a/src/layouts/Home.astro +++ b/src/layouts/Home.astro @@ -2,7 +2,6 @@ import BaseHead from "../components/BaseHead.astro" import Header from "../components/Header.astro" import Footer from "../components/Footer.astro" -import FootPrint from "../components/svg/FootPrint" interface Props { title: string diff --git a/src/pages/index.astro b/src/pages/index.astro index c9e5ff2..24a266b 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,8 +1,9 @@ --- import Home from "../layouts/Home.astro" -import CircleIcon from "../components/svg/Circle" import MiniMapSvg from "../components/svg/MiniMaps" import FootPrint from "../components/svg/FootPrint" +import { GlobeIcon, Pencil1Icon, TargetIcon } from "@radix-ui/react-icons" +import ProjectAim from "../components/ProjectAim.astro" ---