-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
115 lines (109 loc) · 4.86 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<html data-theme="blob">
<head>
<title>Home | scottnewman.xyz</title>
<link rel="icon" href="https://avatars.githubusercontent.com/u/87974560?v=4">
<!--daisyUI + TailwindCSS CDNs-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.min.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--My overrides-->
<link rel="stylesheet" href="assets/style.css">
<script src="assets/index.ts"></script>
<!--webamp-->
<script src="https://unpkg.com/[email protected]/built/webamp.bundle.min.js"></script>
<!--Discord Share Link Embed-->
<meta content="Home | scottnewman.xyz" property="og:title" />
<meta content="website used for funny" property="og:description" />
<meta content="https://www.scottnewman.xyz" property="og:url" />
<meta content="https://avatars.githubusercontent.com/u/87974560?v=4" property="og:image" />
<meta content="#B22222" data-react-helmet="true" name="theme-color" />
</head>
<body>
<header>
<nav class="navbar navbar-center bg-base-100">
<div class="flex-1">
<div tabindex="0" role="button" class="btn btn-ghost btn-disabled btn-circle avatar">
<div class="w-10 rounded-full">
<img alt="pfp" src="https://avatars.githubusercontent.com/u/87974560?v=4" />
</div>
</div>
<h1 class="text-success text-xl join-item join-horizontal p-2">scottnewman.xyz</h1>
<div class="divider divider-horizontal"></div>
<h1 class="text-xl text-base-content join-horizontal">Home</h1>
</nav>
</header>
<div class="card bg-base-100 w-96 shadow-xl" style="display: grid; margin-left: 35%; margin-top: 15%;">
<div class="card-body">
<h2 class="card-title">Oh!</h2>
<p>This Website is under construction!</p>
</div>
</div>
<div id="app" style="position: absolute; bottom: 70; right: 150;"></div>
<script src="https://unpkg.com/webamp"></script>
<script>
const app = document.getElementById("app")
const webamp = new Webamp({
initialTracks: [{
metaData: {
artist: "j^p^n",
title: "Bloom",
},
url: "assets/audio/j^p^n - Bloom.mp3",
},
{
metaData: {
artist: "Jake Chudnow",
title: "Moon Men (Instrumental)",
},
url: "assets/audio/Jake Chudnow - Moon Men (Instrumental).mp3"
},
],
windowLayout: {
main: {
position: { top: 0, left: 0 },
shadeMode: false,
closed: false,
},
equalizer: {
position: { top: 0, left: 0 },
shadeMode: false,
closed: true,
},
playlist: {
position: { top: 0, left: 0 },
shadeMode: true,
// size: { extraHeight: 3, extraWidth: 7 },
closed: true,
},
},
enableDoubleSizeMode: false,
});
webamp.renderWhenReady(app);
// Check if Winamp is supported in this browser
if(!Webamp.browserIsSupported()) {
alert("Oh no! Webamp does not work!")
throw new Error("oopsie webamp no work")
}
webamp.play();
</script>
<footer class="footer absolute bottom-0 p-4 bg-base-100 text-base-content text-xs bg-opacity-1 margin-auto">
<aside>
<h4>Copyleft scottnewman.xyz 2024 - all lefts unreserved</h4>
<div class="join grid grid-flow-col gap-4">
<a class="join-item join-horizontal link link-hover">sign your life away!</a>
<a class="join-item join-horizontal link" href="https://github.com/ScottN13/ScottN13.github.io">github repo</a>
<a class="join-item join-horizontal link" href="https://www.scottnewman.xyz/credits.html">credits</a>
<div class="join-item join-horizontal divider divider-horizontal"></div>
<p>socials :</p>
<a class="join-item join-horizontal link" href="www.youtube.com/@scottnewmanfm">youtube</a>
<a class="join-item join-horizontal link" href="https://discord.gg/Ht5zzZ4Teq">discord</a>
<a class="join-item join-horizontal link" href="https://twitter.com/scotttynewman">twitter/X</a>
<a class="join-item join-horizontal link" href="https://www.reddit.com/user/Crazyman-X/">reddit</a>
<div class="join-item join-horizontal divider divider-horizontal"></div>
</div>
</aside>
</footer>
</div>
</body>
</html>