From c7592076368a46ec054dc6db5c27b111791b91cd Mon Sep 17 00:00:00 2001
From: Allef <46696111+joseallef@users.noreply.github.com>
Date: Sun, 2 Jun 2024 12:25:44 -0300
Subject: [PATCH] Update README.md
Updating the README
---
README.md | 49 +------------------------------------------------
1 file changed, 1 insertion(+), 48 deletions(-)
diff --git a/README.md b/README.md
index ed1f0aa..a095d07 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-
Portfolio site
+ Website
@@ -54,50 +54,3 @@
```bash
http://localhost:3000
```
-
-
-Click to expand workaround example
-
-
-**components/StyledLink.js**
-
-```javascript
-import Link from 'next/link'
-import styled from 'styled-components'
-
-const StyledLink = ({ as, children, className, href }) => (
-
- {children}
-
-)
-
-export default styled(StyledLink)`
- color: #0075e0;
- text-decoration: none;
- transition: all 0.2s ease-in-out;
-
- &:hover {
- color: #40a9ff;
- }
-
- &:focus {
- color: #40a9ff;
- outline: none;
- border: 0;
- }
-`
-```
-
-**pages/index.js**
-
-```javascript
-import StyledLink from '../components/StyledLink'
-
-export default () => (
-
- First post
-
-)
-```
-
-