Skip to content

Commit ae81270

Browse files
committed
fixed an error and removed old files
1 parent 4a9111a commit ae81270

File tree

7 files changed

+7
-245
lines changed

7 files changed

+7
-245
lines changed

src/assets/styles/letter.css

Lines changed: 0 additions & 82 deletions
This file was deleted.

src/components/Alphabet.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
import '@/assets/styles/alphabet.css';
44
import Letter from '@/components/Letter.astro';
5-
import { LetterEntity } from '@/types';
5+
import { type LetterEntity } from '@/types';
66
77
type Props = {
88
title: string;

src/pages/career.astro

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/pages/dashboard.astro

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/pages/letter.astro

Lines changed: 0 additions & 139 deletions
This file was deleted.

src/types/alphabet.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export type LetterEntity = {
2+
letter: string;
3+
code: string | number;
4+
};

src/types/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
export type { LinkProps } from "./link";
2+
export type { LetterEntity } from "./alphabet";
3+
24

35
export type { BlogCardProps, BlogMeta, BlogPost } from "./blog";

0 commit comments

Comments
 (0)