An open API service indexing awesome lists of open source software.

https://github.com/roomacarthur/the_crown


https://github.com/roomacarthur/the_crown

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# The Crown

Market Place
Hawes
North Yorkshire
DL8 3RD
[email protected]
01969667017

## Built With:

- React (Vite)
- TailwindCSS

## Hostinger browserRouter fix.

```apache

RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]

```

## Individual page title

```javascript
import { useEffect } from 'react';

useEffect(() => {
let title = " | "
document.title = title;
});
```