-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 55f4846
Showing
15 changed files
with
4,755 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "next/core-web-vitals" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). | ||
|
||
## Getting Started | ||
|
||
First, run the development server: | ||
|
||
```bash | ||
npm run dev | ||
# or | ||
yarn dev | ||
# or | ||
pnpm dev | ||
# or | ||
bun dev | ||
``` | ||
|
||
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. | ||
|
||
You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file. | ||
|
||
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. | ||
|
||
## Learn More | ||
|
||
To learn more about Next.js, take a look at the following resources: | ||
|
||
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. | ||
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. | ||
|
||
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! | ||
|
||
## Deploy on Vercel | ||
|
||
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. | ||
|
||
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,315 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
:root { | ||
--foreground-rgb: 0, 0, 0; | ||
--background-start-rgb: 214, 219, 220; | ||
--background-end-rgb: 255, 255, 255; | ||
} | ||
|
||
body { | ||
display: flex; | ||
align-items: center; | ||
flex-direction: column; | ||
justify-content: center; | ||
min-height: 100vh; | ||
font-family: 'Cyber', sans-serif; | ||
background: linear-gradient( | ||
90deg, | ||
#000 70%, | ||
#000 70%, | ||
#000 72%, | ||
#000 72%, | ||
#000 74%, | ||
#000 74% | ||
), #000; | ||
background-size: 200% 100%; | ||
animation: glitch 2s infinite; /* Apply the glitch animation to the background */ | ||
} | ||
|
||
@keyframes glitch { | ||
0% { | ||
background-position: 100% 0; | ||
} | ||
20% { | ||
background-position: 0 0; | ||
} | ||
40% { | ||
background-position: 100% 0; | ||
} | ||
60% { | ||
background-position: 0 0; | ||
} | ||
80% { | ||
background-position: 100% 0; | ||
} | ||
100% { | ||
background-position: 0 0; | ||
} | ||
} | ||
|
||
|
||
@media (prefers-color-scheme: dark) { | ||
:root { | ||
--foreground-rgb: 255, 255, 255; | ||
--background-start-rgb: 0, 0, 0; | ||
--background-end-rgb: 0, 0, 0; | ||
} | ||
} | ||
|
||
.glitch-button { | ||
position: relative; | ||
background: linear-gradient(90deg, #ff0000, #0000ff); /* Close the linear-gradient function properly */ | ||
background-clip: text; | ||
-webkit-background-clip: text; | ||
color: transparent; | ||
border: none; | ||
padding: 8px 16px; | ||
font-weight: 500; | ||
border-radius: 8px; | ||
cursor: pointer; | ||
overflow: hidden; | ||
transition: all 0.3s ease-in-out; | ||
z-index: 1; | ||
} | ||
|
||
|
||
.glitch-button::before, .glitch-button::after { | ||
content: attr(data-text); | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
clip-path: inset(0); | ||
color: #00ff00; /* Glitch color */ | ||
z-index: -1; | ||
animation: glitch 0.3s 0.05s infinite; | ||
} | ||
|
||
@keyframes glitch { | ||
0% { | ||
transform: translate(-2px, -2px); | ||
} | ||
20% { | ||
transform: translate(2px, 2px); | ||
} | ||
40% { | ||
transform: translate(-2px, -2px); | ||
} | ||
60% { | ||
transform: translate(2px, 2px); | ||
} | ||
80% { | ||
transform: translate(-2px, -2px); | ||
} | ||
100% { | ||
transform: translate(2px, 2px); | ||
} | ||
} | ||
@font-face { | ||
font-family: Cyber; | ||
src: url("https://assets.codepen.io/605876/Blender-Pro-Bold.otf"); | ||
font-display: swap; | ||
} | ||
|
||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
|
||
@keyframes glitch { | ||
0% { | ||
background-position: 100% 0; | ||
} | ||
20% { | ||
background-position: 0 0; | ||
} | ||
40% { | ||
background-position: 100% 0; | ||
} | ||
60% { | ||
background-position: 0 0; | ||
} | ||
80% { | ||
background-position: 100% 0; | ||
} | ||
100% { | ||
background-position: 0 0; | ||
} | ||
} | ||
|
||
|
||
|
||
.cybr-btn { | ||
--primary: hsl(var(--primary-hue), 85%, calc(var(--primary-lightness, 50) * 1%)); | ||
--shadow-primary: hsl(var(--shadow-primary-hue), 90%, 50%); | ||
--primary-hue: 0; | ||
--primary-lightness: 50; | ||
--color: hsl(0, 0%, 100%); | ||
--font-size: 20px; | ||
--shadow-primary-hue: 180; | ||
--label-size: 9px; | ||
--shadow-secondary-hue: 60; | ||
--shadow-secondary: hsl(var(--shadow-secondary-hue), 90%, 60%); | ||
--clip: polygon(0 0, 100% 0, 100% 100%, 95% 100%, 95% 90%, 85% 90%, 85% 100%, 8% 100%, 0 70%); | ||
--border: 4px; | ||
--shimmy-distance: 5; | ||
--clip-one: polygon(0 2%, 100% 2%, 100% 95%, 95% 95%, 95% 90%, 85% 90%, 85% 95%, 8% 95%, 0 70%); | ||
--clip-two: polygon(0 78%, 100% 78%, 100% 100%, 95% 100%, 95% 90%, 85% 90%, 85% 100%, 8% 100%, 0 78%); | ||
--clip-three: polygon(0 44%, 100% 44%, 100% 54%, 95% 54%, 95% 54%, 85% 54%, 85% 54%, 8% 54%, 0 54%); | ||
--clip-four: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0); | ||
--clip-five: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0); | ||
--clip-six: polygon(0 40%, 100% 40%, 100% 85%, 95% 85%, 95% 85%, 85% 85%, 85% 85%, 8% 85%, 0 70%); | ||
--clip-seven: polygon(0 63%, 100% 63%, 100% 80%, 95% 80%, 95% 80%, 85% 80%, 85% 80%, 8% 80%, 0 70%); | ||
font-family: 'Cyber', sans-serif; | ||
color: var(--color); | ||
cursor: pointer; | ||
background: transparent; | ||
text-transform: uppercase; | ||
font-size: var(--font-size); | ||
outline: transparent; | ||
letter-spacing: 2px; | ||
position: relative; | ||
font-weight: 700; | ||
border: 0; | ||
min-width: 150px; | ||
height: 50px; | ||
line-height: 50px; | ||
transition: background 0.2s; | ||
} | ||
|
||
.cybr-btn:hover { | ||
--primary: hsl(var(--primary-hue), 85%, calc(var(--primary-lightness, 50) * 0.8%)); | ||
} | ||
.cybr-btn:active { | ||
--primary: hsl(var(--primary-hue), 85%, calc(var(--primary-lightness, 50) * 0.6%)); | ||
} | ||
|
||
.cybr-btn:after, | ||
.cybr-btn:before { | ||
content: ''; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
clip-path: var(--clip); | ||
z-index: -1; | ||
} | ||
|
||
.cybr-btn:before { | ||
background: var(--shadow-primary); | ||
transform: translate(var(--border), 0); | ||
} | ||
|
||
.cybr-btn:after { | ||
background: var(--primary); | ||
} | ||
|
||
.cybr-btn__tag { | ||
position: absolute; | ||
padding: 1px 4px; | ||
letter-spacing: 1px; | ||
line-height: 1; | ||
bottom: -5%; | ||
right: 5%; | ||
font-weight: normal; | ||
color: hsl(0, 0%, 0%); | ||
font-size: var(--label-size); | ||
} | ||
|
||
.cybr-btn__glitch { | ||
position: absolute; | ||
top: calc(var(--border) * -1); | ||
left: calc(var(--border) * -1); | ||
right: calc(var(--border) * -1); | ||
bottom: calc(var(--border) * -1); | ||
background: var(--shadow-primary); | ||
text-shadow: 2px 2px var(--shadow-primary), -2px -2px var(--shadow-secondary); | ||
clip-path: var(--clip); | ||
animation: glitch 2s infinite; | ||
display: none; | ||
} | ||
|
||
.cybr-btn:hover .cybr-btn__glitch { | ||
display: block; | ||
} | ||
|
||
.cybr-btn__glitch:before { | ||
content: ''; | ||
position: absolute; | ||
top: calc(var(--border) * 1); | ||
right: calc(var(--border) * 1); | ||
bottom: calc(var(--border) * 1); | ||
left: calc(var(--border) * 1); | ||
clip-path: var(--clip); | ||
background: var(--primary); | ||
z-index: -1; | ||
} | ||
|
||
@keyframes glitch { | ||
0% { | ||
clip-path: var(--clip-one); | ||
} | ||
2%, 8% { | ||
clip-path: var(--clip-two); | ||
transform: translate(calc(var(--shimmy-distance) * -1%), 0); | ||
} | ||
6% { | ||
clip-path: var(--clip-two); | ||
transform: translate(calc(var(--shimmy-distance) * 1%), 0); | ||
} | ||
9% { | ||
clip-path: var(--clip-two); | ||
transform: translate(0, 0); | ||
} | ||
10% { | ||
clip-path: var(--clip-three); | ||
transform: translate(calc(var(--shimmy-distance) * 1%), 0); | ||
} | ||
13% { | ||
clip-path: var(--clip-three); | ||
transform: translate(0, 0); | ||
} | ||
14%, 21% { | ||
clip-path: var(--clip-four); | ||
transform: translate(calc(var(--shimmy-distance) * 1%), 0); | ||
} | ||
25% { | ||
clip-path: var(--clip-five); | ||
transform: translate(calc(var(--shimmy-distance) * 1%), 0); | ||
} | ||
30% { | ||
clip-path: var(--clip-five); | ||
transform: translate(calc(var(--shimmy-distance) * -1%), 0); | ||
} | ||
35%, 45% { | ||
clip-path: var(--clip-six); | ||
transform: translate(calc(var(--shimmy-distance) * -1%)); | ||
} | ||
40% { | ||
clip-path: var(--clip-six); | ||
transform: translate(calc(var(--shimmy-distance) * 1%)); | ||
} | ||
50% { | ||
clip-path: var(--clip-six); | ||
transform: translate(0, 0); | ||
} | ||
55% { | ||
clip-path: var(--clip-seven); | ||
transform: translate(calc(var(--shimmy-distance) * 1%), 0); | ||
} | ||
60% { | ||
clip-path: var(--clip-seven); | ||
transform: translate(0, 0); | ||
} | ||
31%, 61%, 100% { | ||
clip-path: var(--clip-four); | ||
} | ||
} | ||
|
||
.cybr-btn:nth-of-type(2) { | ||
--primary-hue: 260; | ||
} |
Oops, something went wrong.