diff --git a/public/Alpha.svg b/public/Alpha.svg new file mode 100644 index 0000000..e3d209e --- /dev/null +++ b/public/Alpha.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/AppSidebar.vue b/src/components/AppSidebar.vue index 032d77a..6486369 100644 --- a/src/components/AppSidebar.vue +++ b/src/components/AppSidebar.vue @@ -1,5 +1,4 @@ \ No newline at end of file + diff --git a/src/components/ui/typography/TypographyBlockquote.vue b/src/components/ui/typography/TypographyBlockquote.vue new file mode 100644 index 0000000..5d96740 --- /dev/null +++ b/src/components/ui/typography/TypographyBlockquote.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/ui/typography/TypographyH1.vue b/src/components/ui/typography/TypographyH1.vue new file mode 100644 index 0000000..55fb646 --- /dev/null +++ b/src/components/ui/typography/TypographyH1.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/ui/typography/TypographyH2.vue b/src/components/ui/typography/TypographyH2.vue new file mode 100644 index 0000000..d3abce0 --- /dev/null +++ b/src/components/ui/typography/TypographyH2.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/ui/typography/TypographyH3.vue b/src/components/ui/typography/TypographyH3.vue new file mode 100644 index 0000000..7054eff --- /dev/null +++ b/src/components/ui/typography/TypographyH3.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/ui/typography/TypographyH4.vue b/src/components/ui/typography/TypographyH4.vue new file mode 100644 index 0000000..2dfe1a3 --- /dev/null +++ b/src/components/ui/typography/TypographyH4.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/ui/typography/TypographyInlineCode.vue b/src/components/ui/typography/TypographyInlineCode.vue new file mode 100644 index 0000000..60c3589 --- /dev/null +++ b/src/components/ui/typography/TypographyInlineCode.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/ui/typography/TypographyLarge.vue b/src/components/ui/typography/TypographyLarge.vue new file mode 100644 index 0000000..921bf76 --- /dev/null +++ b/src/components/ui/typography/TypographyLarge.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/ui/typography/TypographyLead.vue b/src/components/ui/typography/TypographyLead.vue new file mode 100644 index 0000000..3407c28 --- /dev/null +++ b/src/components/ui/typography/TypographyLead.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/ui/typography/TypographyList.vue b/src/components/ui/typography/TypographyList.vue new file mode 100644 index 0000000..bba093d --- /dev/null +++ b/src/components/ui/typography/TypographyList.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/ui/typography/TypographyMuted.vue b/src/components/ui/typography/TypographyMuted.vue new file mode 100644 index 0000000..02bddba --- /dev/null +++ b/src/components/ui/typography/TypographyMuted.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/ui/typography/TypographyP.vue b/src/components/ui/typography/TypographyP.vue new file mode 100644 index 0000000..315353d --- /dev/null +++ b/src/components/ui/typography/TypographyP.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/ui/typography/TypographySmall.vue b/src/components/ui/typography/TypographySmall.vue new file mode 100644 index 0000000..9406b97 --- /dev/null +++ b/src/components/ui/typography/TypographySmall.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/ui/typography/TypographyTable.vue b/src/components/ui/typography/TypographyTable.vue new file mode 100644 index 0000000..662e891 --- /dev/null +++ b/src/components/ui/typography/TypographyTable.vue @@ -0,0 +1,16 @@ + + + diff --git a/src/components/ui/typography/index.ts b/src/components/ui/typography/index.ts new file mode 100644 index 0000000..cdb1d66 --- /dev/null +++ b/src/components/ui/typography/index.ts @@ -0,0 +1,13 @@ +export { default as TypographyH1 } from './TypographyH1.vue' +export { default as TypographyH2 } from './TypographyH2.vue' +export { default as TypographyH3 } from './TypographyH3.vue' +export { default as TypographyH4 } from './TypographyH4.vue' +export { default as TypographyP } from './TypographyP.vue' +export { default as TypographyBlockquote } from './TypographyBlockquote.vue' +export { default as TypographyTable } from './TypographyTable.vue' +export { default as TypographyList } from './TypographyList.vue' +export { default as TypographyInlineCode } from './TypographyInlineCode.vue' +export { default as TypographyLead } from './TypographyLead.vue' +export { default as TypographyLarge } from './TypographyLarge.vue' +export { default as TypographySmall } from './TypographySmall.vue' +export { default as TypographyMuted } from './TypographyMuted.vue' diff --git a/src/views/LoginView.vue b/src/views/LoginView.vue index 2861707..0922c2b 100644 --- a/src/views/LoginView.vue +++ b/src/views/LoginView.vue @@ -4,7 +4,8 @@ import { useAuthStore } from '@/stores/auth' import { Button } from '@/components/ui/button' import { Input } from '@/components/ui/input' import { Checkbox } from '@/components/ui/checkbox' -import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card' +import { Label } from '@/components/ui/label' +import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' import { Eye, EyeOff } from 'lucide-vue-next' const auth = useAuthStore() @@ -35,29 +36,27 @@ async function handleLogin() {