14 lines
376 B
Text
14 lines
376 B
Text
---
|
|
import Navbar from '../components/Navbar/Navbar'
|
|
import { Background, HTML } from '../../fwt'
|
|
const { title } = Astro.props
|
|
|
|
const websiteName = 'AIO Tools'
|
|
const websiteDescription = 'All-in-One Tools for Everyone'
|
|
---
|
|
|
|
<HTML title={title} name={websiteName} description={websiteDescription} font="inter">
|
|
<Background color="#0f1a28" />
|
|
<Navbar />
|
|
<slot />
|
|
</HTML>
|