Clean up the project a bit

Fix imports, remove unnecessary imports, and replace all single apostrophe to double apostrophes
This commit is contained in:
itsfinniii
2026-04-27 21:15:32 +02:00
parent 9a92b1939c
commit d9430335d5
47 changed files with 192 additions and 197 deletions

View File

@@ -1,12 +1,11 @@
---
import { getSettings } from '@/content/settings/settings';
import { getAllPaginatedProjects } from '@/content/projects/projects';
import { markdownToHtml } from '@/lib/markdown';
import { Image } from 'astro:assets';
import { getProjectRoute } from '@/lib/routing';
import CalendarIcon from '@/icons/CalendarIcon.astro';
import { getImageSize, getImageUrl } from '@/lib/images';
import { promise } from 'astro:schema';
import { getSettings } from "@/content/settings/settings";
import { getAllPaginatedProjects } from "@/content/projects/projects";
import { markdownToHtml } from "@/lib/markdown";
import { Image } from "astro:assets";
import { getProjectRoute } from "@/lib/routing";
import CalendarIcon from "@/icons/CalendarIcon.astro";
import { getImageSize, getImageUrl } from "@/lib/images";
interface Props {
page: ProjectIndex;