import TagList from "@/components/tags/tag-list";
import { Metadata } from "next";
import TagContent from "./content";

export const metadata: Metadata = {
    title: "tags",
};

export default async function Tags() {
    return (
        <>
            <TagContent />
            <div className="overflow-hidden shadow">
                <TagList />
            </div>
        </>
    );
} 