Skip to content

Commit

Permalink
seo keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
AB10110F committed Aug 24, 2023
1 parent aad6aac commit 65760fa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
██║ ╚██████╔╝██║ ██║ ██║ ██║ ╚██████╔╝███████╗██║╚██████╔╝
╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝
</pre>
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
Expand Down
5 changes: 3 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
},
}

Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ function Home() {

return (
<main className={text}>
<span className={scanner}></span>
<Image src="/scanlines.jpg" width={500} height={500} className={scanlines} alt="image" />
<span className={scanner}></span>
<Typewriter text={title}/>
<div className={styles.grid}>
<Terminal/>
Expand Down
6 changes: 3 additions & 3 deletions src/components/Terminal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 ",
Expand Down Expand Up @@ -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",
]
}
Expand Down Expand Up @@ -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("")
Expand Down

0 comments on commit 65760fa

Please sign in to comment.