https://github.com/roomacarthur/the_crown
https://github.com/roomacarthur/the_crown
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/roomacarthur/the_crown
- Owner: roomacarthur
- Created: 2023-07-19T09:04:49.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-30T10:22:50.000Z (8 months ago)
- Last Synced: 2024-10-30T11:26:35.815Z (8 months ago)
- Language: JavaScript
- Size: 3.42 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
});
```