Update index.html
Browse files- index.html +50 -1
index.html
CHANGED
@@ -1,4 +1,52 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
@@ -32,3 +80,4 @@
|
|
32 |
|
33 |
</body>
|
34 |
</html>
|
|
|
|
1 |
+
import React from 'react';
|
2 |
+
import { Heart } from "lucide-react";
|
3 |
+
|
4 |
+
export default function FullScreenIframe() {
|
5 |
+
return (
|
6 |
+
<div className="flex flex-col min-h-screen">
|
7 |
+
<header className="px-4 lg:px-6 h-14 flex items-center">
|
8 |
+
<a className="flex items-center justify-center" href="#">
|
9 |
+
<Heart className="h-6 w-6 text-primary" />
|
10 |
+
<span className="sr-only">FullScreen Iframe</span>
|
11 |
+
</a>
|
12 |
+
</header>
|
13 |
+
<main className="flex-1">
|
14 |
+
<section className="w-full py-12 md:py-24 lg:py-32 xl:py-48">
|
15 |
+
<div className="container px-4 md:px-6">
|
16 |
+
<div className="flex flex-col items-center space-y-4 text-center">
|
17 |
+
<div className="space-y-2">
|
18 |
+
<h1 className="text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl lg:text-6xl/none">
|
19 |
+
Full Screen Iframe
|
20 |
+
</h1>
|
21 |
+
<p className="mx-auto max-w-[700px] text-gray-500 md:text-xl dark:text-gray-400">
|
22 |
+
This is a full screen iframe.
|
23 |
+
</p>
|
24 |
+
</div>
|
25 |
+
</div>
|
26 |
+
</div>
|
27 |
+
</section>
|
28 |
+
<section className="w-full py-12 md:py-24 lg:py-32">
|
29 |
+
<div className="container px-4 md:px-6">
|
30 |
+
<iframe src="https://aidark.net/" frameBorder="0" scrolling="no" className="w-full h-screen"></iframe>
|
31 |
+
</div>
|
32 |
+
</section>
|
33 |
+
</main>
|
34 |
+
<footer className="flex flex-col gap-2 sm:flex-row py-6 w-full shrink-0 items-center px-4 md:px-6 border-t">
|
35 |
+
<p className="text-xs text-gray-500 dark:text-gray-400"> 2023 Full Screen Iframe. All rights reserved.</p>
|
36 |
+
<nav className="sm:ml-auto flex gap-4 sm:gap-6">
|
37 |
+
<a className="text-xs hover:underline underline-offset-4" href="#">
|
38 |
+
Terms of Service
|
39 |
+
</a>
|
40 |
+
<a className="text-xs hover:underline underline-offset-4" href="#">
|
41 |
+
Privacy
|
42 |
+
</a>
|
43 |
+
</nav>
|
44 |
+
</footer>
|
45 |
+
</div>
|
46 |
+
);
|
47 |
+
}
|
48 |
+
|
49 |
+
<!-- <!DOCTYPE html>
|
50 |
<html lang="en">
|
51 |
<head>
|
52 |
<meta charset="UTF-8">
|
|
|
80 |
|
81 |
</body>
|
82 |
</html>
|
83 |
+
-->
|