diff --git a/public/static/favicon.ico b/public/static/favicon.ico new file mode 100644 index 00000000..3346422e Binary files /dev/null and b/public/static/favicon.ico differ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42acdd34..2977f940 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,28 @@ import '@acab/reset.css' -import type { FC, ReactNode } from 'react' - -import Tracker from '@nasustim.com/components/molecules/SEO/Tracker' -import { SITE_DOMAIN, SITE_TITLE } from '../constants' +import { type ReactNode } from 'react' +import Tracker from '@/components/molecules/SEO/Tracker' +import { SITE_DOMAIN, SITE_TITLE } from '@/constants/values' import { signikaNegative, workSans } from 'src/font' type Props = { children: ReactNode } -const RootLayout: FC = ({ children }) => ( - - - - - {children} - -) +function RootLayout({ children }: Props) { + return ( + + + + + {children} + + ) +} export default RootLayout export const metadata = { - title: `top - ${SITE_TITLE}`, + title: `${SITE_TITLE}`, alternates: { canonical: `${SITE_DOMAIN}/`, }, diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index 253de80c..0a5ff1fe 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -1,8 +1,7 @@ 'use client' +import Template from '@/components/templates/error' -import Template from '@nasustim.com/components/templates/error' - -const Page = () => { +function Page() { const error = new Error('404 Not Found') return