Files
LexiChain/app/page.tsx

16 lines
669 B
TypeScript
Raw Normal View History

2026-03-28 23:46:45 +01:00
import { Metadata } from "next";
import { HomePage } from "@/features/home/components/HomePage";
export const metadata: Metadata = {
title: "LexiChain | AI-Powered Fast Contract Management",
description: "Accelerate your BFSI contract management with AI. LexiChain is the premier blockchain-verified platform for smart contracts, loans, and insurance.",
openGraph: {
title: "LexiChain | AI-Powered Fast Contract Management",
description: "Accelerate your BFSI contract management with AI. LexiChain is the premier blockchain-verified platform for smart contracts, loans, and insurance.",
}
};
2026-02-14 21:47:08 +01:00
export default function Home() {
2026-02-14 22:08:43 +01:00
return <HomePage />;
2026-02-14 20:21:02 +01:00
}