diff --git a/src/assets/hero.png b/src/assets/hero.png
new file mode 100644
index 0000000..c92012e
Binary files /dev/null and b/src/assets/hero.png differ
diff --git a/src/components/features.astro b/src/components/features.astro
new file mode 100644
index 0000000..365666d
--- /dev/null
+++ b/src/components/features.astro
@@ -0,0 +1,55 @@
+---
+const features = [
+ {
+ title: "Bring Your Own Framework",
+ description:
+ "Build your site using React, Svelte, Vue, Preact, web components, or just plain ol' HTML + JavaScript.",
+ },
+ {
+ title: "100% Static HTML, No JS",
+ description:
+ "Astro renders your entire page to static HTML, removing all JavaScript from your final build by default.",
+ },
+ {
+ title: "On-Demand Components",
+ description:
+ "Need some JS? Astro can automatically hydrate interactive components when they become visible on the page. If the user never sees it, they never load it.",
+ },
+ {
+ title: "Broad Integration",
+ description:
+ "Astro supports TypeScript, Scoped CSS, CSS Modules, Sass, Tailwind, Markdown, MDX, and any of your favorite npm packages.",
+ },
+ {
+ title: "SEO Enabled",
+ description:
+ "Automatic sitemaps, RSS feeds, pagination and collections take the pain out of SEO and syndication.",
+ },
+ {
+ title: "Community",
+ description:
+ "Astro is an open source project powered by hundreds of contributors making thousands of individual contributions.",
+ },
+];
+---
+
+
+
+ Everything you need to start a website
+
+
+ Astro comes batteries included. It takes the best parts of state-of-the-art
+ tools and adds its own innovations.
+
+
+
+
+ {
+ features.map((item) => (
+
+
{item.title}
{" "}
+
{item.description}
+
+ ))
+ }
+
diff --git a/src/components/hero.astro b/src/components/hero.astro
index 48b755f..d869c5b 100644
--- a/src/components/hero.astro
+++ b/src/components/hero.astro
@@ -1,10 +1,18 @@
---
import { Image } from "@astrojs/image/components";
-import heroImage from "assets/hero.avif";
+import heroImage from "assets/hero.png";
import Link from "@components/ui/link.astro";
---
-
+
+
+
+
Marketing website done with Astro
@@ -14,8 +22,8 @@ import Link from "@components/ui/link.astro";
pages. Built with Astro.build, TailwindCSS & Alpine.js. You can quickly
create any website with this starter.
-