material-you-react/app/page.tsx

31 lines
867 B
TypeScript
Raw Normal View History

2024-01-25 22:43:42 +03:00
import {Fragment} from "react";
import Fabs from "./components/fabs";
import Badges from "./components/badges";
2024-01-25 22:43:42 +03:00
export default function Page() {
return(
<Fragment>
<div style={{
display: "flex",
flexDirection:"column",
justifyContent: "center",
alignItems: "center",
2024-01-28 20:09:28 +03:00
overflowX: "auto",
2024-01-25 22:43:42 +03:00
gap: "0em"
}}>
<h1>Google Material You UI kit</h1>
<div style={{
display: "flex",
flexDirection: "column",
gap: "0.5em",
justifyContent: "center",
alignItems: "center"
2024-01-25 22:43:42 +03:00
}}>
<Fabs/>
<Badges/>
2024-01-25 22:43:42 +03:00
</div>
</div>
</Fragment>
)
}