Skip to content

Commit 6e0314b

Browse files
fixing
0 parents  commit 6e0314b

File tree

20 files changed

+3040
-0
lines changed

20 files changed

+3040
-0
lines changed

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root=true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/workflows/deploy.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v2
16+
with:
17+
node-version: '22'
18+
19+
- name: Install Gulp globally
20+
run: npm install --global gulp-cli
21+
22+
- name: Install dependencies
23+
run: npm install
24+
25+
- name: Verify Gulp output
26+
run: gulp build

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules

.nvmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
22
2+
engine-strict=true

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Multividas
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Hey, we are Multividas 👋
2+
3+
Multividas.com is social media platform, where you can share posts, publish articles and news ..
4+
5+
## 🤝 Contributing
6+
We welcome contributions from everyone. If you're interested in contributing, please check out our [contribution guidelines](https://github.com/multividas/.github/blob/main/CONTRIBUTING.md).
7+
8+
## 🛡️ Security Issues
9+
10+
If you discover a security vulnerability within Multividas, we would appreciate your help in disclosing it to us responsibly, please check out our [security issues guidelines](https://github.com/multividas/.github/blob/main/SECURITY.md).
11+
12+
## 🛡️ License
13+
All our projects are released under the [MIT License](https://github.com/multividas/.github/blob/main/LICENSE).
14+
15+
---
16+
17+

docs/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
main.css

docs/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
multividas.com

docs/index.html

Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<title>Multividas.com</title>
9+
<link rel="shortcut icon"
10+
href="https://raw.githubusercontent.com/multividas/developers-multividas/refs/heads/main/docs/public/images/logo.svg"
11+
type="image/x-icon" />
12+
<!-- meta desc -->
13+
<meta name="description"
14+
content="Multividas.com is social media platform, where you can share posts, publish articles and news .." />
15+
<meta name="keywords" content="multividas.com" />
16+
<meta name="author" content="multividas.com" />
17+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
18+
19+
<!-- open graph -->
20+
<meta property="og:locale" content="en_US" />
21+
<meta property="og:type" content="website" />
22+
<meta property="og:title" content="multividas.com" />
23+
<meta property="og:description"
24+
content="Multividas.com is social media platform, where you can share posts, publish articles and news .." />
25+
<meta property="og:url" content="https://multividas.com" />
26+
<meta property="og:site_name" content="multividas.com" />
27+
<meta name="theme-color" content="#0f4c81" />
28+
29+
<!-- styles css -->
30+
<link rel="stylesheet" href="./[email protected]" />
31+
</head>
32+
33+
<body>
34+
<header class="header">
35+
<div class="container header__container">
36+
<nav class="header-nav__brand">
37+
<ul class="header-nav__brand_list">
38+
<li class="header-nav__item">
39+
<a href="#">Multividas.com</a>
40+
</li>
41+
</ul>
42+
<div class="burger-menu" onclick="toggleMenu()">&#9776;</div>
43+
</nav>
44+
<nav class="header-nav">
45+
<ul class="header-nav__list">
46+
<li class="header-nav__item">
47+
<a href="https://about.multividas.com" target="_blank">Who we are</a>
48+
</li>
49+
<li class="header-nav__item">
50+
<a href="https://about.multividas.com/products" target="_blank">Our products</a>
51+
</li>
52+
<li class="header-nav__item">
53+
<a href="https://github.com/multividas" target="_blank">Open source</a>
54+
</li>
55+
<li class="header-nav__item">
56+
<a href="https://news.multividas.com" target="_blank">News</a>
57+
</li>
58+
<li class="header-nav__item">
59+
<a href="https://support.multividas.com" target="_blank">Support</a>
60+
</li>
61+
</ul>
62+
</nav>
63+
</div>
64+
</header>
65+
66+
<main class="main__container">
67+
<section class="multividas__section">
68+
<h1>Multividas.com</h1>
69+
<p>Multividas.com is a social media platform for sharing posts, publishing articles, and news...</p>
70+
</section>
71+
72+
<section class="multividas__section">
73+
<h2>Security Issues</h2>
74+
<p>If you discover a security vulnerability, please review our
75+
<a href="https://github.com/multividas/.github/blob/main/SECURITY.md" target="_blank">[security issue guidelines]</a>
76+
</p>
77+
</section>
78+
79+
<section class="multividas__section">
80+
<h2>Contact us</h2>
81+
<p>Send an email to our dev team at:
82+
<a href="mailto:[email protected]">[[email protected]]</a>
83+
</p>
84+
</section>
85+
</main>
86+
87+
<footer>
88+
<div class="footer__container">
89+
<div class="footer__section">
90+
<h3 class="footer__section-title">Multividas</h3>
91+
<ul class="footer__list">
92+
<li class="footer__item">
93+
<a href="https://multividas.com" target="_blank">Multividas.com</a>
94+
</li>
95+
<li class="footer__item">
96+
<a href="https://multichat.network" target="_blank">MultiChat.network</a>
97+
</li>
98+
</ul>
99+
</div>
100+
<div class="footer__section">
101+
<h3 class="footer__section-title">Resources</h3>
102+
<ul class="footer__list">
103+
<li class="footer__item">
104+
<a href="https://blog.multividas.com" target="_blank">Blog</a>
105+
</li>
106+
<li class="footer__item">
107+
<a href="https://developers.multividas.com" target="_blank">Developers</a>
108+
</li>
109+
<li class="footer__item">
110+
<a href="https://status.multividas.com" target="_blank">Status</a>
111+
</li>
112+
<li class="footer__item">
113+
<a href="https://github.com/multividas/multividas-php-business-sdk" target="_blank">SDKs</a>
114+
</li>
115+
</ul>
116+
</div>
117+
<div class="footer__section">
118+
<h3 class="footer__section-title">Company</h3>
119+
<ul class="footer__list">
120+
<li class="footer__item">
121+
<a href="https://about.multividas.com" target="_blank">About us</a>
122+
</li>
123+
<li class="footer__item">
124+
<a href="https://about.multividas.com/brand-resources" target="_blank">Brand Resources</a>
125+
</li>
126+
<li class="footer__item">
127+
<a href="https://multividas.com/investor-relations" target="_blank">Investor Relations</a>
128+
</li>
129+
</ul>
130+
</div>
131+
<div class="footer__section">
132+
<h3 class="footer__section-title">Support</h3>
133+
<ul class="footer__list">
134+
<li class="footer__item">
135+
<a href="https://help.multividas.com" target="_blank">Help Center</a>
136+
</li>
137+
<li class="footer__item">
138+
<a href="https://multividas.com/contact-us" target="_blank">Contact us</a>
139+
</li>
140+
</ul>
141+
</div>
142+
</div>
143+
</footer>
144+
145+
<script type="text/javascript" defer>
146+
const toggleMenu = () => {
147+
document.querySelectorAll('.header-nav').forEach(list => {
148+
list.classList.toggle('show');
149+
});
150+
}
151+
</script>
152+
</body>
153+
154+
</html>

0 commit comments

Comments
 (0)