Skip to content

Commit

Permalink
Add FeatureOne and Hero placeholder components to Home page
Browse files Browse the repository at this point in the history
  • Loading branch information
NebraskaCoder committed Feb 7, 2024
1 parent 54dcca9 commit 777d6e3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
5 changes: 5 additions & 0 deletions app/[locale]/FeatureOne.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const FeatureOne = () => {
return <div>FeatureOne</div>;
};

export default FeatureOne;
5 changes: 5 additions & 0 deletions app/[locale]/Hero.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const Hero = () => {
return <div>Hero</div>;
};

export default Hero;
10 changes: 9 additions & 1 deletion app/[locale]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
import Hero from "./Hero";
import FeatureOne from "./FeatureOne";

export default function Home() {
return <></>;
return (
<>
<Hero />
<FeatureOne />
</>
);
}

0 comments on commit 777d6e3

Please sign in to comment.