Skip to content

Commit

Permalink
erchive
Browse files Browse the repository at this point in the history
  • Loading branch information
olimjon1606 committed Dec 13, 2023
1 parent ea621d3 commit 6562bd3
Show file tree
Hide file tree
Showing 3,014 changed files with 521,156 additions and 1 deletion.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5502
}
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 Sadee

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# GitHub-App
Elevate your GitHub experience with our cutting-edge application that seamlessly integrates dark and light modes. Whether you're an early morning coder or a late-night hacker, our GitHub Application with Dark and Light Mode ensures you have the perfect environment for your coding journey.
80 changes: 80 additions & 0 deletions archive.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Application</title>
<meta name="description" content="Find a github user information with GitFinder.">

<!-- favicon -->
<link rel="stylesheet" href="./favicon.svg" type="image/svg+xml">

<!-- 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=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">

<!-- material icon link -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,400,1,0" />

<!-- costom css link -->
<link rel="stylesheet" href="./archive/css/style.css">

</head>

<body>
<!-- skip to content -->

<a href="#main" class="skip-to-content">Skip to Content</a>

<div class="theme"><button class="icon-btn theme-btn" aria-pressed="false" aria-label="Toggle dark and light theme"
data-theme-btn>
<span class="material-symbols-rounded sun-icon" aria-hidden="true">light_mode</span>
<span class="material-symbols-rounded moon-icon" aria-hidden="true">dark_mode</span>
</button></div>

<main class="main" id="main">
<div class="container">
<section data-profile-card></section>

<section class="tab-container">
<div class="tab-list" aria-label="Tab navigation" role="tablist">
<button class="tab-btn" aria-selected="true" role="tab" id="tab-1" tabindex="0"
aria-controls="panel-1" data-tab-btn>Repositories</button>

<button class="tab-btn" aria-selected="false" role="tab" id="tab-2" tabindex="0"
aria-controls="panel-2" data-tab-btn data-forked-tab-btn>Forked</button>

</div>

<div class="tab-panel" role="tabpanel" id="panel-1" aria-labelledby="tab-1" tabindex="0" data-tab-panel
data-repo-panel></div>

<div class="tab-panel" role="tabpanel" id="panel-2" aria-labelledby="tab-2" tabindex="0" data-tab-panel
data-fork-panel hidden></div>


</section>

<section class="error" data-error></section>
</div>
</main>


<!-- Footer -->

<footer class="footer container">
<p class="copyright">&copy; 2023 O.Olimjon </p>

</footer>


<!-- JS -->
<script src="./archive/js/app.js" type="module"></script>
<script src="./archive/js/theme.js" type="module">
</script>
</body>

</html>
Loading

0 comments on commit 6562bd3

Please sign in to comment.