Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
thefathdev committed Aug 5, 2023
1 parent 7e82a76 commit 84b2b46
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
1 change: 0 additions & 1 deletion src/layouts/BlogLayout.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
import Container from "@components/container.astro";
import { getFormattedDate } from "@utils/all";
import { log } from "astro/dist/core/logger/core";
import Layout from "./Layout.astro";
const { frontmatter } = Astro.props;
Expand Down
6 changes: 1 addition & 5 deletions src/pages/404.astro
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
---
import { Icon } from "astro-icon";
import Layout from "@layouts/Layout.astro";
import Container from "@components/container.astro";
import Sectionhead from "@components/sectionhead.astro";
import Button from "@components/ui/button.astro";
import Contactform from "@components/contactform.astro";
import Layout from "@layouts/Layout.astro";
---

<Layout title="404 Not Found">
Expand Down
7 changes: 3 additions & 4 deletions src/pages/contact.astro
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
import { Icon } from "astro-icon";
import Layout from "@layouts/Layout.astro";
import Contactform from "@components/contactform.astro";
import Container from "@components/container.astro";
import Sectionhead from "@components/sectionhead.astro";
import Button from "@components/ui/button.astro";
import Contactform from "@components/contactform.astro";
import Layout from "@layouts/Layout.astro";
import { Icon } from "astro-icon";
---

<Layout title="Contact">
Expand Down

0 comments on commit 84b2b46

Please sign in to comment.