feat(landing): add landing page with Hero, HowItWorks and FeatureCards
This commit is contained in:
parent
767970b6e6
commit
4f514a4e99
4 changed files with 164 additions and 2 deletions
|
|
@ -1,11 +1,16 @@
|
|||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import Hero from "../components/landing/Hero";
|
||||
import HowItWorks from "../components/landing/HowItWorks";
|
||||
import FeatureCards from "../components/landing/FeatureCards";
|
||||
|
||||
export const Route = createFileRoute("/")({ component: Index });
|
||||
|
||||
function Index() {
|
||||
return (
|
||||
<div className="p-2 text-3xl text-amber-400">
|
||||
<h3>Welcome Home!</h3>
|
||||
<div className="flex flex-col">
|
||||
<Hero />
|
||||
<HowItWorks />
|
||||
<FeatureCards />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue