Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated favicon #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified app/favicon.ico
Binary file not shown.
19 changes: 1 addition & 18 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
return (
<html lang='en'>
<Head>
<meta
name='viewport'
content='minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no, user-scalable=no, viewport-fit=cover'
/>
<meta name='Morpheus' content='Morpheus' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
<meta name='apple-mobile-web-app-title' content='Morpheus' />
<meta name='format-detection' content='telephone=no' />
<meta name='mobile-web-app-capable' content='yes' />
<meta name='msapplication-TileColor' content='#00ff85' />
<meta name='msapplication-tap-highlight' content='no' />
<link rel='manifest' href='/public/manifest.json' />
<link rel='shortcut icon' href='/public/favicon.ico' />
<link rel='apple-touch-icon' href='/public/apple-touch-icon.png' />
<meta name='theme-color' content='#000000' />
<title>{metadata.title?.toString()}</title>
<meta name='description' content={metadata.description?.toString()} />
<link rel="shortcut icon" href="/static/favicon.ico" />
</Head>
<body className={robotoMono.className}>
<Providers>{children}</Providers>
Expand Down
5 changes: 3 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { Hero } from '@/components/hero'
import Nav from '@/components/nav'
import RootLayout from '@/app/layout'

export default function Home() {
return (
<>
<Nav />
<Hero />
<Nav />
<Hero />
</>
)
}
2 changes: 1 addition & 1 deletion components/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { TypeAnimation } from 'react-type-animation'
export const Hero = () => {
return (
<>
<Container maxW={'container.xl'}>
<Container maxW={'container.xl'} className="abcde">
<Stack as={Box} textAlign={'center'} spacing={{ base: 4, md: 8 }} py={{ base: 20, md: 16 }}>
{/* <Box position='relative' display='flex' gap='-25px' alignItems='center' justifyContent='center' mb={8}>
<Box overflow='hidden' width={{ base: '100px', md: '178px'}} height={{ base: '100px', md: '178px'}} bg='whiteAlpha.50' borderRadius='xl' boxShadow='lg' transform='rotate(-15deg)'><Image src='/bg.jpeg' alt='image' fill objectFit='cover' /></Box>
Expand Down
Binary file added favicon.ico
Binary file not shown.
Loading