The front end for the FaaS project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { Grid } from "@mui/material"
|
|
|
|
import Hero from "@components/Hero"
|
|
|
|
import SectionAbout from "@components/SectionAbout"
|
|
|
|
|
|
|
|
const Homepage = () => {
|
|
|
|
return (
|
|
|
|
<Grid>
|
|
|
|
<Hero
|
|
|
|
imgSrc="/home.jpg"
|
|
|
|
imgAlt="Placeholder image for Cloud Computing"
|
|
|
|
title="Welcome to the FaaS Project!"
|
|
|
|
subtitle="Made by Iakovos Mastrogiannopoulos for his Master's Thesis!"
|
|
|
|
/>
|
|
|
|
<SectionAbout />
|
|
|
|
</Grid>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Homepage
|