Files
jotion/nextjs/app/home/page.tsx
Mayne0213 e82ea71c22 REFACTOR(repo): simplify project structure
- Move services/nextjs to nextjs/
- Move deploy/docker/Dockerfile.prod to Dockerfile
- Add GitHub Actions workflows (ci.yml, build.yml)
- Remove deploy/, services/, scripts/ folders
2026-01-05 02:29:10 +09:00

18 lines
495 B
TypeScript

import { Heading } from "@/widgets/landing";
import { Heroes } from "@/widgets/landing";
import { Footer } from "@/widgets/landing";
const MarketingPage = () => {
return (
<div className="mt-40 dark:bg-[#1F1F1F] bg-white min-h-full flex flex-col">
<div className="flex flex-col items-center justify-center md:justify-start text-center gap-y-8 flex-1 px-6 pb-10">
<Heading />
<Heroes />
</div>
<Footer />
</div>
);
};
export default MarketingPage;