2024-01-25 22:43:42 +03:00
|
|
|
import {Fragment} from "react";
|
2024-01-29 23:43:09 +03:00
|
|
|
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={{
|
2024-01-28 23:56:22 +03:00
|
|
|
display: "flex",
|
|
|
|
flexDirection: "column",
|
|
|
|
gap: "0.5em",
|
|
|
|
justifyContent: "center",
|
|
|
|
alignItems: "center"
|
2024-01-25 22:43:42 +03:00
|
|
|
}}>
|
2024-01-29 23:43:09 +03:00
|
|
|
<Fabs/>
|
|
|
|
<Badges/>
|
2024-01-25 22:43:42 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Fragment>
|
|
|
|
)
|
|
|
|
}
|