diff --git a/package-lock.json b/package-lock.json index 9d49be2..1e733db 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "astro-erudite", - "version": "0.0.1", + "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "astro-erudite", - "version": "0.0.1", + "version": "1.1.0", "dependencies": { "@astrojs/check": "^0.7.0", "@astrojs/markdown-remark": "^5.2.0", diff --git a/package.json b/package.json index be430cf..a324863 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "astro-erudite", "type": "module", - "version": "0.0.1", + "version": "1.1.0", "private": true, "scripts": { "dev": "astro dev", diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 9e98152..58a62b7 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -10,7 +10,7 @@ import SocialIcons from './SocialIcons.astro' class="flex flex-col items-center justify-center gap-y-2 sm:flex-row sm:justify-between" >
-

+

© {new Date().getFullYear()} All rights reserved.

diff --git a/src/components/ui/pagination.tsx b/src/components/ui/pagination.tsx new file mode 100644 index 0000000..50b4739 --- /dev/null +++ b/src/components/ui/pagination.tsx @@ -0,0 +1,174 @@ +import * as React from 'react' +import { ChevronLeft, ChevronRight, MoreHorizontal } from 'lucide-react' + +import { cn } from '@/lib/utils' +import { type ButtonProps, buttonVariants } from '@/components/ui/button' + +const Pagination = ({ className, ...props }: React.ComponentProps<'nav'>) => ( +