Skip to content

Commit

Permalink
Sitio equivocado
Browse files Browse the repository at this point in the history
  • Loading branch information
ComicIvans committed Jan 28, 2024
1 parent 988ff49 commit 9293a67
Show file tree
Hide file tree
Showing 3 changed files with 157 additions and 4 deletions.
14 changes: 10 additions & 4 deletions fs/minecraft/var/www/html/landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,28 @@
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>wupp.dev</title>
<title>mc.wupp.dev</title>

<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://wupp.dev" />
<meta property="og:type" content="website" />
<meta property="og:title" content="wupp.dev" />
<!-- <meta property="og:description" content="undefined"> -->
<meta property="og:image" content="/og_landing.jpg" />
<meta
property="og:image"
content="/og_landing.jpg"
/>

<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="wupp.dev" />
<meta property="twitter:url" content="https://wupp.dev" />
<meta name="twitter:title" content="wupp.dev" />
<!-- <meta name="twitter:description" content="undefined"> -->
<meta name="twitter:image" content="/og_landing.jpg" />
<meta
name="twitter:image"
content="/og_landing.jpg"
/>

<style>
* {
Expand Down Expand Up @@ -82,7 +88,7 @@
</head>
<body>
<main>
<h1>wupp.dev</h1>
<h1>mc.wupp.dev</h1>
<p>
montaje en proceso.
<a href="https://comicivans.github.io/server">más información ></a>
Expand Down
147 changes: 147 additions & 0 deletions fs/principal/var/www/html/landing.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>wupp.dev</title>

<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://wupp.dev" />
<meta property="og:type" content="website" />
<meta property="og:title" content="wupp.dev" />
<!-- <meta property="og:description" content="undefined"> -->
<meta property="og:image" content="/og_landing.jpg" />

<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="wupp.dev" />
<meta property="twitter:url" content="https://wupp.dev" />
<meta name="twitter:title" content="wupp.dev" />
<!-- <meta name="twitter:description" content="undefined"> -->
<meta name="twitter:image" content="/og_landing.jpg" />

<style>
* {
box-sizing: border-box;
}

html,
body,
html {
margin: 0;
padding: 0;
}

body {
background-color: #000;
overflow: hidden;
position: relative;
font-family: sans-serif;
}

#tsparticles {
height: 100avh;
height: 100vh;
width: 100vw;
width: 110avw;
position: absolute;
inset: 0;
z-index: -10;
}

main {
position: absolute;
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #fefefe;
}

p {
font-variant: small-caps;
}

a {
color: #485778;
background-color: transparent;
padding: 0.1rem 0.3rem;
border-radius: 5px;
transition: color 150ms ease-in-out, background-color 150ms ease-in-out;
text-decoration: none;
}

a:hover {
color: #fefefe;
background-color: #151c36;
}
</style>
</head>
<body>
<main>
<h1>wupp.dev</h1>
<p>
montaje en proceso.
<a href="https://comicivans.github.io/server">más información ></a>
</p>
</main>
<div id="tsparticles"></div>

<script
src="https://cdnjs.cloudflare.com/ajax/libs/tsparticles/1.18.1/tsparticles.min.js"
integrity="sha512-PYHWDEuXOTJ9MZ+/QHqkbgiEYZ+LImQv3i/9NyYOABFvK37e4q4Wg7aQDN1JpoGiEu1TYZh6JMrZluZox2gbDA=="
crossorigin="anonymous"
></script>
<script src="https://cdn.jsdelivr.net/npm/tsparticles-preset-links@2/tsparticles.preset.links.min.js"></script>

<script>
tsParticles.load("tsparticles", {
interactivity: {
events: {
onHover: {
enable: true,
mode: "bubble",
},
onClick: {
enable: true,
mode: "push",
},
},
modes: {
bubble: {
opacity: 0.8,
size: 6,
color: {
value: "#fbdcc4",
},
},
},
},
particles: {
color: {
value: "#151C36",
},
links: {
color: {
value: "#485778",
},
enable: true,
opacity: 0.65,
},
move: {
enable: true,
},
opacity: {
value: 0.8,
},
size: {
value: 3,
},
},
});
</script>
</body>
</html>
Binary file added fs/principal/var/www/html/og_landing.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9293a67

Please sign in to comment.