14 lines
265 B
TypeScript
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 />
|
|
)
|
|
}
|