diff --git a/public/favicon.png b/public/favicon.png deleted file mode 100644 index 1c2b9ed..0000000 Binary files a/public/favicon.png and /dev/null differ diff --git a/src/app/favicon.ico b/src/app/favicon.ico index 718d6fe..757a0b2 100644 Binary files a/src/app/favicon.ico and b/src/app/favicon.ico differ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e894af8..7ca935f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,19 @@ import type { Metadata } from 'next' import { Inter } from 'next/font/google' import './globals.css' +import type { ReactNode } from 'react' const inter = Inter({ subsets: ['latin'] }) export const metadata: Metadata = { - title: 'Create Next App', - description: 'Generated by create next app', + title: 'César Alberca', + description: 'Digital Nomad & Software Crafter', } export default function RootLayout({ children, }: Readonly<{ - children: React.ReactNode + children: ReactNode }>) { return ( diff --git a/src/app/page.tsx b/src/app/page.tsx index c36a067..4d6bcac 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,103 +1,5 @@ -import Image from 'next/image' +import { HomePage } from '../features/home/ui/home.page' export default function Home() { - return ( -
-
-

- Get started by editing  - src/app/page.tsx -

-
- - By Vercel Logo - -
-
- -
- Next.js Logo -
- -
- -

- Docs{' '} - - -> - -

-

- Find in-depth information about Next.js features and API. -

-
- - -

- Learn{' '} - - -> - -

-

- Learn about Next.js in an interactive course with quizzes! -

-
- - -

- Templates{' '} - - -> - -

-

Explore starter templates for Next.js.

-
- - -

- Deploy{' '} - - -> - -

-

- Instantly deploy your Next.js site to a shareable URL with Vercel. -

-
-
-
- ) + return } diff --git a/src/core/components/footer/footer.tsx b/src/core/components/footer/footer.tsx index 446c618..47b1efd 100644 --- a/src/core/components/footer/footer.tsx +++ b/src/core/components/footer/footer.tsx @@ -3,11 +3,9 @@ import { Links } from '../links/links' import { Direction } from '../../types/direction' import { Datetime } from '../../datetime' import { useTranslations } from 'next-intl' -import { useRouter } from 'next/router' export const Footer: FC = () => { const t = useTranslations() - const { locale, locales, route, push } = useRouter() const currentYear = Datetime.fromNow().year @@ -15,13 +13,6 @@ export const Footer: FC = () => {