13 lines
397 B
TypeScript
13 lines
397 B
TypeScript
import type { Metadata } from "next"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Global Relief Fund | Support Humanitarian Causes",
|
|
description: "Support global relief efforts and humanitarian causes led by the Tamil community.",
|
|
};
|
|
|
|
import GlobalReliefFundClient from "./GlobalReliefFundClient";
|
|
|
|
export default function GlobalReliefFundPage() {
|
|
return <GlobalReliefFundClient />;
|
|
}
|