// import { Image, BlitzPage } from "blitz"
// import logo from "public/logo.png"
// /*
// * This file is just for a pleasant getting started page for your new app.
// * You can delete everything in here and start from scratch if you like.
// */
// const Home: BlitzPage = () => {
// return (
//
//
//
//
//
//
// Congrats! Your app is ready.
//
//
//
//
//
//
// )
// }
// Home.suppressFirstRenderFlicker = true
// export default Home
import {Box, Typography} from '@mui/material'
import {makeStyles} from "@mui/styles";
import React from "react";
import { BlitzPage } from 'blitz';
import { Layout } from 'app/core/layouts/Layout';
const useStyles = makeStyles(() => ({
container: {
background: 'background.default',
display: 'flex',
flexDirection: 'column',
flexGrow: 1,
height: '100vh',
maxheight: '100vh',
}
}))
const Search: BlitzPage = () => {
const classes = useStyles();
return (
<>
Searching
>
)
}
Search.getLayout = (page) => {page}
export default Search;