diff --git a/README.md b/README.md index 2c64113..44e2ef3 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ██║ ╚██████╔╝██║ ██║ ██║ ██║ ╚██████╔╝███████╗██║╚██████╔╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ -Since everybody has one, I decided to develop my own website. I've had enough of clean websites with the same layouts, so I decided to mimic a terminal on the browser. I know it is not a good ux interface, but I wanted to stand out somehow, besides terminals are cool in my opinion :) +Since everybody has one, I decided to develop my own website. There are already enough websites with the same layout, so I tried to simulate a terminal for mine. I am aware that this is not the best ux interface, but I wanted to stand out somehow, besides terminals are cool in my opinion :) ## Build with - Next.js diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 12cf876..d95f93f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,12 +7,13 @@ import Favicon from './favicon.png'; export const metadata: Metadata = { title: 'AB10110F', description: 'Portfolio', + keywords: ['portfolio','developer','web developer', 'next.js'], icons: [ { rel: 'icon', url: Favicon.src, } ], openGraph: { - ...Favicon, - title: 'AB10110F-Personal Website', + title: 'AB10110F', + description: 'Personal website' }, } diff --git a/src/app/page.tsx b/src/app/page.tsx index 225bd12..eaa0204 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,8 +34,8 @@ function Home() { return (
- image +
diff --git a/src/components/Terminal.tsx b/src/components/Terminal.tsx index a45d14c..b487b75 100644 --- a/src/components/Terminal.tsx +++ b/src/components/Terminal.tsx @@ -160,7 +160,7 @@ const Terminal = () => { info = [ "888b | 888~~ Y88b / ~~~888~~~ Este proyecto fue hecho con Next.js 13", - "|Y88b | 888___ Y88b / 888 Él modelo 3D fue añadido con three.js", + "|Y88b | 888___ Y88b / 888 El modelo 3D fue añadido con three.js", "| Y88b | 888 Y88b/ 888 La cuadrícula de puntos fue hecha con p5.js", "| Y88b | 888 /Y88b 888 ", "| Y88b| 888 / Y88b 888 ", @@ -197,7 +197,7 @@ const Terminal = () => { smallInfo = [ "Este proyecto fue hecho con Next.js 13", - "Él modelo 3D fue añadido con three.js", + "El modelo 3D fue añadido con three.js", "La cuadrícula de puntos fue hecha con p5.js\n\n", ] } @@ -318,7 +318,7 @@ const Terminal = () => { newOutput = "" break; default: - newOutput += "x_x Syntax Error \"" + input + "\" is not a command" + newOutput += "x_x Syntax Error \"" + input + "\" is not a command\n\n" } setOutput(newOutput) setInput("")