Files
hoanghapc_nextJs/src/app/tin-tuc/page.tsx
2026-02-05 17:22:56 +07:00

14 lines
265 B
TypeScript

import ArticleHome from "@/components/article/home";
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Tin tức ",
description: "hoanghapc",
};
export default function Home() {
return (
<ArticleHome />
)
}