From 380e88c72fcf73f3473eeb66ef34c09c4c937c32 Mon Sep 17 00:00:00 2001 From: Ayo Date: Sat, 5 Nov 2022 08:51:21 +0100 Subject: [PATCH] refactor: remove unused import --- apps/landing-page/src/components/splash.astro | 2 +- apps/landing-page/src/pages/index.astro | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/landing-page/src/components/splash.astro b/apps/landing-page/src/components/splash.astro index e47c450..b67f48a 100644 --- a/apps/landing-page/src/components/splash.astro +++ b/apps/landing-page/src/components/splash.astro @@ -1,7 +1,7 @@ --- import { generateImage } from "astro-eleventy-img"; import { Icon } from "astro-icon"; -import Starfield from "~/components/starfield.astro"; +// import Starfield from "~/components/starfield.astro"; import Copynpm from "~/components/copynpm.astro"; const widths = [450, 800]; diff --git a/apps/landing-page/src/pages/index.astro b/apps/landing-page/src/pages/index.astro index 3ddc71a..7954933 100644 --- a/apps/landing-page/src/pages/index.astro +++ b/apps/landing-page/src/pages/index.astro @@ -1,6 +1,6 @@ --- import Header from "~/components/header.astro"; -import Icon from "astro-icon"; +// import Icon from "astro-icon"; import Splash from "~/components/splash.astro"; import "~/styles/index.css"; import AstroSection from "~/sections/astro-section.astro";