12 lines
383 B
TypeScript
12 lines
383 B
TypeScript
import type { Metadata } from 'next';
|
|
import HomeView from '@/components/home/HomeView';
|
|
import { SITE_NAME } from '@/lib/constants';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Home',
|
|
description: `${SITE_NAME} — premium 100% Halal meat delivery. Fresh chicken, beef, and lamb; frozen fish and seafood only.`,
|
|
};
|
|
|
|
export default function HomePage() {
|
|
return <HomeView />;
|
|
} |