File size: 638 Bytes
6f6d8a6
 
 
 
 
 
 
 
 
 
 
feb8590
6f6d8a6
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script lang="ts">
	import '../app.css';
	import '@fortawesome/fontawesome-free/css/all.min.css'

	let { children } = $props();
</script>

<div class="max-w-4xl mx-auto">
	<header class="text-center mb-10">
		<div class="flex justify-center items-center mb-4">
			<img src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg" alt="Hugging Face Logo" class="h-12 mr-3">
			<h1 class="text-3xl md:text-4xl font-bold text-gray-800">Bandwidth Test</h1>
		</div>
		<p class="text-gray-600 max-w-2xl mx-auto">
			Measure your connection speed to Hugging Face's servers in real-time
		</p>
	</header>
	{@render children()}
</div>