diff --git a/README.md b/README.md
index a94de57..24c5a4d 100644
--- a/README.md
+++ b/README.md
@@ -95,3 +95,19 @@ const customRoutes = require('./customRoutes')
routesMiddleware({server, app}, customRoutes)
```
+## Usage with next/link and styled-components for client-side routing
+
+
+```js
+import Link from 'next/link'
+import styled from 'styled-components'
+
+const NavBarLink = styled.a`
+ text-decoration: none;
+ color: rgb(209, 72, 54);
+`
+
+
+ WORK
+
+```