-
Notifications
You must be signed in to change notification settings - Fork 307
Navigation & Functionality Fixes #143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Prachiikhar25
wants to merge
7
commits into
opensource-society:main
Choose a base branch
from
Prachiikhar25:feat
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
0746cb2
enhanced the UI of your CodeClip application with modern, beautiful sβ¦
Prachiikhar25 9037f16
enhanced the UI of your CodeClip application with modern, beautiful sβ¦
Prachiikhar25 15c84ca
Update pr-preview.yml
Prachiikhar25 155a08f
enhanced the UI of your CodeClip application with modern, beautiful sβ¦
Prachiikhar25 0af209f
Merge branch 'feat' of https://github.com/Prachiikhar25/CodeClip intoβ¦
Prachiikhar25 c035ad7
Updated to remove conflict
Prachiikhar25 2d09a41
Deleted duplicate files
Prachiikhar25 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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,139 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>CodeClip - Master Coding Challenges</title> | ||
|
|
||
| <!-- Google Fonts --> | ||
| <link rel="preconnect" href="https://fonts.googleapis.com"> | ||
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
| <link href="https://fonts.googleapis.com/css2?family=Bitcount:[email protected]&display=swap" rel="stylesheet"> | ||
| <link href="https://fonts.googleapis.com/css2?family=Bitcount:[email protected]&family=Oooh+Baby&display=swap" rel="stylesheet"> | ||
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"> | ||
|
|
||
| <!-- Styles --> | ||
| <link rel="stylesheet" href="styles.css"> | ||
| </head> | ||
| <body> | ||
| <!-- Header Component --> | ||
| <header class="header" role="banner"> | ||
| <div class="container header__container"> | ||
| <div class="header__logo"> | ||
| <span class="logo-text">CodeClip</span> | ||
| </div> | ||
| <nav class="header__nav" id="navMenu"> | ||
| <ul class="nav__list"> | ||
| <li><a href="/" data-route="/" class="nav__link active">Home</a></li> | ||
| <li><a href="/challenges" data-route="/challenges" class="nav__link">Challenges</a></li> | ||
| <li><a href="/editor" data-route="/editor" class="nav__link">Editor</a></li> | ||
| <li><a href="/profile" data-route="/profile" class="nav__link">Profile</a></li> | ||
| </ul> | ||
| </nav> | ||
| <button class="header__toggle" id="navToggle" aria-label="Open navigation menu"> | ||
| <span class="hamburger"></span> | ||
| <span class="hamburger"></span> | ||
| <span class="hamburger"></span> | ||
| </button> | ||
| </div> | ||
| </header> | ||
|
|
||
| <!-- Main Content --> | ||
| <main role="main"> | ||
| <div class="container"> | ||
| <div class="hero__content"> | ||
| <div class="hero__text"> | ||
| <p class="hero__subtitle">π An Interactive Coding Platform</p> | ||
| <h1 class="hero__title"> | ||
| <span id="element"></span> | ||
| </h1> | ||
| <p class="hero__description"> | ||
| Discover CodeClip, an exhilarating, lightweight web app that | ||
| empowers developers to master coding challenges right in their | ||
| browser! Whether you're tackling algorithms, debugging scripts, | ||
| or showcasing your solutions to the open-source community, | ||
| CodeClip offers a seamless, interactive experience with a sleek | ||
| interface, real-time feedback, and effortless sharing via unique | ||
| URLs or GitHub Gists. | ||
| </p> | ||
| <div class="hero__cta"> | ||
| <a href="/editor" data-route="/editor" class="btn btn-primary">π― Start Coding</a> | ||
| <a href="/challenges" data-route="/challenges" class="btn btn-secondary">π View Challenges</a> | ||
| </div> | ||
| </div> | ||
| <div class="hero__visual"> | ||
| <div class="code-window"> | ||
| <div class="code-window__header"> | ||
| <span class="circle red"></span> | ||
| <span class="circle yellow"></span> | ||
| <span class="circle green"></span> | ||
| </div> | ||
| <div class="code-content"> | ||
| <div class="code-line"><span class="comment">// Welcome to CodeClip</span></div> | ||
| <div class="code-line"><span class="keyword">function</span> <span class="string">solveProblem</span>() {</div> | ||
| <div class="code-line"> <span class="keyword">return</span> <span class="string">'Success!'</span>;</div> | ||
| <div class="code-line">}</div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="content"> | ||
| <div class="card"> | ||
| <a href="/challenges" data-route="/challenges"> | ||
| <div class="icon"><i class="material-icons md-36" alt="Challenge vault icon">security</i></div> | ||
| <p class="title">Challenge Vault</p> | ||
| <p class="text">All your challenges in one place β track, review, repeat.</p> | ||
| </a> | ||
| </div> | ||
| </div> | ||
| </main> | ||
|
|
||
| <!-- Footer --> | ||
|
|
||
|
|
||
| <footer class="footer" role="contentinfo"> | ||
| <div class="container"> | ||
| <div class="footer__content"> | ||
| <div class="footer__section"> | ||
| <h4>CodeClip</h4> | ||
| <p>Master coding challenges in your browser</p> | ||
| </div> | ||
| <div class="footer__section"> | ||
| <h4>Quick Links</h4> | ||
| <ul> | ||
| <li><a href="/" data-route="/">Home</a></li> | ||
| <li><a href="/challenges" data-route="/challenges">Challenges</a></li> | ||
| <li><a href="/editor" data-route="/editor">Editor</a></li> | ||
| </ul> | ||
| </div> | ||
| <div class="footer__section"> | ||
| <h4>Community</h4> | ||
| <ul> | ||
| <li><a href="https://github.com/opensource-society/CodeClip">GitHub</a></li> | ||
| <li><a href="#">Discord</a></li> | ||
| <li><a href="#">Twitter</a></li> | ||
| </ul> | ||
| </div> | ||
| </div> | ||
| <div class="footer__bottom"> | ||
| <p>© 2024 CodeClip. All rights reserved.</p> | ||
| </div> | ||
| </div> | ||
| </footer> | ||
|
|
||
| <!-- Scripts --> | ||
| <script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script> | ||
| <script> | ||
| var typed = new Typed("#element", { | ||
| strings: ["Code", "Challenge", "Conquer"], | ||
| typeSpeed: 50, | ||
| loop: true, | ||
| }); | ||
| </script> | ||
| <script type="module" src="./scripts/data.js"></script> | ||
| <script type="module" src="./scripts/app.js"></script> | ||
| <script type="module" src="./scripts/theme.js"></script> | ||
| </body> | ||
| </html> | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logic: This file is nearly identical to index.html, creating unnecessary duplication. Consider removing this file or clarifying its distinct purpose.