19 lines
431 B
TypeScript
19 lines
431 B
TypeScript
import { Box, Container, Text } from "@chakra-ui/react";
|
|
|
|
export function Page() {
|
|
return (
|
|
<>
|
|
<Box alignContent="left">
|
|
<Container maxW="container.lg" paddingTop="8vh" textAlign="left">
|
|
<Text>
|
|
srfidukjghdiuftgrteutgrtsu,k jhsrte h hjgtsredbfdgns srthhfg h fgdyh
|
|
y
|
|
</Text>
|
|
</Container>
|
|
</Box>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export const title = "Home - Car Crushers";
|