13 lines
284 B
TypeScript
13 lines
284 B
TypeScript
import React from "react";
|
|
import Hero from "./(components)/Hero";
|
|
import AboutSection from "./(components)/AboutSection";
|
|
|
|
export default function Homepage() {
|
|
return (
|
|
<React.Fragment>
|
|
<Hero />
|
|
<AboutSection />
|
|
</React.Fragment>
|
|
);
|
|
}
|