Commit Graph

3656 Commits

Author SHA1 Message Date
غزال
50da95732d
Create index.html
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>مملكة الغزلان</title>
    <link href="https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&display=swap" rel="stylesheet">
    <style>
        body {
            margin: 0;
            font-family: 'Amiri', serif;
            background: linear-gradient(to bottom, #fefefe, #f9f5f0);
            color: #333;
        }

        header {
            background-color: #d4af37;
            color: white;
            text-align: center;
            padding: 20px;
        }

        header h1 {
            margin: 0;
            font-size: 2.5rem;
            animation: fadeIn 1s ease-in-out;
        }

        .container {
            text-align: center;
            margin-top: 50px;
        }

        .golden-gate img {
            width: 200px;
            height: 300px;
            border-radius: 10px;
        }

        .btn {
            display: inline-block;
            margin-top: 30px;
            padding: 15px 30px;
            background-color: #d4af37;
            color: white;
            font-size: 1.2rem;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            cursor: pointer;
            transition: 0.3s ease;
        }

        .btn:hover {
            background-color: #b1902c;
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        nav {
            background-color: #d4af37;
            padding: 10px 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            padding: 0;
            margin: 0;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            text-decoration: none;
            color: white;
            font-size: 1.2rem;
        }

        footer {
            margin-top: 50px;
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
        }

        footer p {
            margin: 5px 0;
            font-size: 0.9rem;
        }

        footer p a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    </style>
</head>
<body>
    <header>
        <h1>مملكة الغزلان</h1>
        <p>انضم إلى عالمنا الخاص وابدأ مغامرتك!</p>
    </header>

    <nav>
        <ul>
            <li><a href="#home">الرئيسية</a></li>
            <li><a href="#about">من نحن</a></li>
            <li><a href="#contact">اتصل بنا</a></li>
        </ul>
    </nav>

    <div class="container">
        <div class="golden-gate">
            <img src="https://via.placeholder.com/200x300/FFD700/FFFFFF?text=بوابة+ذهبية" alt="صورة بوابة ذهبية">
        </div>
        <a href="#" class="btn">دخول المملكة</a>
    </div>

    <footer>
        <p>© 2025 جميع الحقوق محفوظة - مملكة الغزلان</p>
        <p>
            <a href="#">فيسبوك</a> |
            <a href="#">تويتر</a> |
            <a href="#">إنستغرام</a>
        </p>
    </footer>
</body>
</html>
2025-01-21 14:55:18 +02:00
Devin Dooley
d49bd6f0f7
Merge pull request #4289 from csauge/patch-1
Update Python.gitignore for .ruff_cache/
2025-01-17 13:20:13 -08:00
Devin Dooley
e8554d85bf
Merge branch 'main' into patch-1 2025-01-17 13:19:34 -08:00
Ben Sheldon [he/him]
ceea7cab23
Merge pull request #4350 from figsoda/rust
Remove Cargo.lock from Rust
2025-01-09 14:49:50 -08:00
Daniel Johnson
4f5f531823
Merge pull request #4543 from NdagiStanley/patch-1
Update Node.gitignore to include VitePress
2025-01-06 14:14:32 -08:00
Stanley M Ndagi
3800aff005
Update Node.gitignore 2024-12-23 14:16:03 +03:00
Stanley M Ndagi
47990e1d0a
Update Node.gitignore 2024-12-22 19:59:00 +03:00
Stanley M Ndagi
3aa43d9132
Update Node.gitignore 2024-12-22 18:10:41 +03:00
Daniel Johnson
6eeebe6f49
Merge pull request #4458 from navan0/patch-1
Update Python.gitignore
2024-12-18 10:15:09 -08:00
Daniel Johnson
e3e08c58b8
Merge pull request #4424 from loupeteam/br-automation-studio
Add gitignore template for Automation Studio Projects
2024-12-17 13:32:38 -08:00
Daniel Johnson
3491a70611
Merge pull request #4442 from zhiyuanzhai/patch-1
Add `*.bbl-SAVE-ERROR` TeX.gitignore
2024-12-17 13:31:44 -08:00
Daniel Johnson
12f6772475
Merge pull request #4539 from dietmarw/addModelica
Add gitignore for Modelica
2024-12-17 13:14:38 -08:00
Dietmar Winkler
218d0dcd59 Remove OS specific settings covered by globals 2024-12-17 22:08:43 +01:00
Tim Hunter
1ea85c292d
Merge pull request #4542 from DrDead0/feature/firebase-gitignore
added gitignore for firebase
2024-12-17 08:46:58 -10:00
DrDead0
7111173b6b Updated Firebase.gitignore based on feedback: scoped to Firebase, removed unrelated entries 2024-12-14 22:53:27 +05:30
Daniel Johnson
077ec2d64e
Merge pull request #4544 from daniel-shuy/feature/kotlin-2
Update for Kotlin 2.x.x
2024-12-06 12:03:00 -08:00
Daniel Johnson
1ed4f04303
Merge pull request #4545 from KalleDK/patch-1
Added uv.lock alongside pdm and poetry
2024-12-06 12:01:34 -08:00
Kalle Møller
a38f687cec
Added uv.lock alongside pdm and poetry 2024-12-03 07:25:58 +01:00
Tim Hunter
807578222d
Merge pull request #4000 from tracetronic/create-ecu-test-gitignore 2024-12-02 07:16:34 -10:00
Daniel Shuy
29d9315844 Update for Kotlin 2.x.x
Ignore Kotlin data directory for Kotlin Gradle plugin

Signed-off-by: Daniel Shuy <17351764+daniel-shuy@users.noreply.github.com>
2024-12-02 16:57:14 +08:00
Stanley M Ndagi
5b3f2595ae
Update Node.gitignore
Include VitePress
2024-12-02 03:24:39 +03:00
DrDead0
b6ddf064dd added gitignore for firebase 2024-12-01 21:17:36 +05:30
Tim Hunter
ef51696ad7
Merge pull request #4540 from moser-jose/moserj
included lines in Laravel.gitignore file
2024-11-27 09:10:03 -10:00
moser-jose
77f5e60953
remove lines /.fleet /.idea /.nova /.vscode /.zed 2024-11-26 23:40:25 -03:00
Tim Hunter
95c8bf079c
Merge pull request #4173 from jmarsh411/main 2024-11-23 14:51:50 -10:00
moser-jose
78ad738f75
included lines in Laravel.gitignore file 2024-11-21 23:14:01 -03:00
Tim Hunter
b1ffcdbb33
Merge pull request #4520 from mediowen/main
Add OpenTofu to community
2024-11-19 13:10:04 -10:00
Daniel Johnson
2254a873ce
Merge pull request #4512 from mergenci/fix-broken-links-to-git-book
Fix broken links to Git book
2024-11-19 12:36:20 -08:00
Dietmar Winkler
14c91a18cc Adds some more OS specific file to the ignore list 2024-11-14 20:41:15 +01:00
Devin Dooley
76739a38b5
Merge pull request #4493 from MattKotsenas/patch-1
Exclude Directory.Build.rsp from VisualStudio.gitignore template
2024-10-17 14:03:32 -07:00
Owen Valentine
30ce81193f
Add OpenTofu to community 2024-10-16 17:20:16 +02:00
Devin Dooley
53cf297127
Merge pull request #4408 from gregnazario/add-move
Adds Move language
2024-10-15 09:55:18 -07:00
Shane Reetz
92cceed617 Rename AutomationStudio4.gitignore to AutomationStudio, and move to Community folder 2024-10-11 14:24:26 -07:00
Daniel Johnson
274c32303f
Merge pull request #4388 from loozhengyuan/feat/update-kicad-temp-files
feat: add KiCad lock/autosave files
2024-10-04 12:44:36 -07:00
Greg Nazario
ad949c4f01
Adds Move language
Move language is used for MoveVM based blockchains as the language
native to them.  The compiler provides a folder build/ that holds
the build artifacts.

The .aptos/ folder is ignored so people do not upload their private
keys to a git repository.
2024-10-02 14:46:31 -07:00
Cem Mergenci
e3e4933fa5 Fix broken links to Git book. 2024-09-27 22:37:52 +03:00
Devin Dooley
5445a27025
Merge pull request #4503 from bschaatsbergen/f/add-zig-ignore
chore: change `zig-cache/` to `.zig-cache/`
2024-09-09 14:28:50 -07:00
Bruno Schaatsbergen
aa8a4bee25
Merge branch 'main' into f/add-zig-ignore 2024-09-09 23:26:06 +02:00
Devin Dooley
ec0f03f241
Merge pull request #3975 from svc-user/main
Create Zig.gitignore
2024-09-09 14:06:54 -07:00
Bruno Schaatsbergen
4b771ac75a
feat: add Zig.gitignore
Signed-off-by: Bruno Schaatsbergen <git@bschaatsbergen.com>
2024-09-07 14:21:37 +02:00
Devin Dooley
33243d9491
Merge pull request #4485 from SunnyCloudYang/main
Create Hexo.gitignore
2024-08-31 16:05:20 -07:00
Yunyang
aa39d37629 Merge branch 'main' of https://github.com/SunnyCloudYang/gitignore 2024-08-31 15:27:59 +08:00
Yunyang
fc32973012 docs: update Hexo.gitignore 2024-08-31 15:23:56 +08:00
GoodNullName
ec4bac82f4
Merge branch 'github:main' into main 2024-08-31 14:10:26 +08:00
Yunyang
e624f8594a fix: update Hexo.gitignore 2024-08-31 13:33:36 +08:00
Daniel Johnson
c22fd083e7
Merge pull request #4445 from costaparas/feature/update-terraform
Ignore terragrunt cache
2024-08-30 13:14:51 -07:00
Daniel Johnson
ec300b949b
Merge pull request #4449 from brettcannon/rescript
Create ReScript.gitignore
2024-08-30 13:13:22 -07:00
Matt Kotsenas
71eddf97b6
Update VisualStudio.gitignore
`Directory.Build.rsp` is a [documented file][1] that allows setting default arguments to command line builds. However, our .gitignore template ignores _all_ `*.rsp` files. which causes confusion:

1. Devs write an .rsp file and if they aren't being attentive forget to commit it
2. Adding it to git requires `git add --force`, which some devs mistake for a destructive or not-recommended action

Thus, explicitly allow the `Directory.Build.rsp` file.

[1]: https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-response-files?view=vs-2022#directorybuildrsp
2024-08-14 17:27:36 -07:00
Yunyang
3a3cf7fad4 Remove some global ignores 2024-07-17 16:53:33 +08:00
Yunyang
038a66091d Update Hexo.gitignore 2024-07-17 16:37:58 +08:00