Files
hoanghapc_nextJs/src/app/tin-tuc/page.tsx

14 lines
265 B
TypeScript
Raw Normal View History

2025-12-30 18:05:53 +07:00
2026-01-14 17:31:59 +07:00
import ArticleHome from "@/components/article/home";
2026-02-05 17:22:56 +07:00
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Tin tức ",
description: "hoanghapc",
};
2025-12-30 18:05:53 +07:00
export default function Home() {
return (
2026-02-05 17:22:56 +07:00
<ArticleHome />
2025-12-30 18:05:53 +07:00
)
}