Skip to content

Commit 9e83dc0

Browse files
committed
Improved website
1 parent 4febd35 commit 9e83dc0

File tree

6 files changed

+58
-34
lines changed

6 files changed

+58
-34
lines changed

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ EasyEdit is an easy markdown editor that allows you to write Markdown (MD) and p
1010

1111
## *Try it before Installing it*
1212

13-
[Try EasyEdit](https://easyedit-web.web.app/ "EasyEdit")
13+
[![Try EasyEdit Online](https://img.shields.io/badge/🚀_Try_EasyEdit-Launch_Web_App-success?style=for-the-badge&logo=rocket)](https://gcclinux.github.io/EasyEdit/webapp/)
1414

1515
## *Install the project*
1616
```
@@ -60,20 +60,21 @@ $ docker run -d --name EASYEDIT -p 3024:3024 ghcr.io/gcclinux/easyedit:main
6060
| row1 | col2 | col3 |
6161
| row2 | col2 | col3 |
6262

63-
## *Markdown Image URL Example*
63+
---
6464

65-
[![GitHub Project](https://raw.githubusercontent.com/gcclinux/EasyEdit/refs/heads/main/public/easyedit128.png "EasyEdit Icon")](https://github.com/gcclinux/EasyEdit)
65+
## *Quick Links*
6666

67-
---
67+
[![Home](https://img.shields.io/badge/🏠_Home-Visit_Site-blue?style=for-the-badge)](https://gcclinux.github.io/EasyEdit/)
68+
[![Docs](https://img.shields.io/badge/📚_Documentation-Read_Docs-green?style=for-the-badge)](https://gcclinux.github.io/EasyEdit/docs)
69+
[![Features](https://img.shields.io/badge/✨_Features-Explore-purple?style=for-the-badge)](https://gcclinux.github.io/EasyEdit/features)
6870

69-
## *Links*
71+
[![Download](https://img.shields.io/badge/⬇️_Download-Get_Latest-orange?style=for-the-badge)](https://gcclinux.github.io/EasyEdit/download)
72+
[![WebApp](https://img.shields.io/badge/🚀_Web_App-Try_Online-success?style=for-the-badge)](https://gcclinux.github.io/EasyEdit/webapp/)
73+
[![Releases](https://img.shields.io/badge/📦_Releases-View_All-blueviolet?style=for-the-badge)](https://github.com/gcclinux/EasyEdit/releases)
7074

71-
- [Home](https://gcclinux.github.io/EasyEdit/)
72-
- [Docs](https://gcclinux.github.io/EasyEdit/docs)
73-
- [Features](https://gcclinux.github.io/EasyEdit/features)
74-
- [Downloads](https://gcclinux.github.io/EasyEdit/download)
75-
- [Project](https://github.com/gcclinux/EasyEdit)
76-
- [Latest releases](https://github.com/gcclinux/EasyEdit/releases)
75+
[![GitHub](https://img.shields.io/badge/💻_Source_Code-GitHub-black?style=for-the-badge&logo=github)](https://github.com/gcclinux/EasyEdit)
76+
[![Stars](https://img.shields.io/github/stars/gcclinux/EasyEdit?style=for-the-badge&logo=github)](https://github.com/gcclinux/EasyEdit/stargazers)
77+
[![License](https://img.shields.io/github/license/gcclinux/EasyEdit?style=for-the-badge)](LICENSE)
7778

7879
## *Support & Community*
7980

docs-site/src/components/Header.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,20 @@
4949

5050
.webapp-link {
5151
padding: 0.5rem 1rem;
52-
background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
52+
background: linear-gradient(135deg, #50c878, #48b06f);
5353
color: white !important;
5454
border-radius: 6px;
5555
transition: transform 0.3s ease, box-shadow 0.3s ease;
5656
font-weight: 600;
57+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
5758
}
5859

5960
.webapp-link:hover {
6061
transform: translateY(-2px);
6162
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
62-
text-decoration: none;
63+
text-decoration: none !important;
64+
color: white !important;
65+
background: linear-gradient(135deg, #48b06f, #3fa060);
6366
}
6467

6568
.github-link {

docs-site/src/components/Header.tsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,6 @@ export default function Header() {
1414
<li><Link to="/features">Features</Link></li>
1515
<li><Link to="/docs">Docs</Link></li>
1616
<li><Link to="/download">Download</Link></li>
17-
<li>
18-
<a
19-
href="/EasyEdit/webapp/"
20-
target="_blank"
21-
rel="noopener noreferrer"
22-
className="webapp-link"
23-
>
24-
🚀 Web App
25-
</a>
26-
</li>
2717
<li>
2818
<a
2919
href="https://github.com/gcclinux/EasyEdit"

docs-site/src/pages/Docs.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,13 +131,13 @@ export default function Docs() {
131131
</div>
132132
</div>
133133

134-
<div className="try-it-section">
134+
<div className="try-it-section">
135135
<h2>Try EasyEdit Online</h2>
136136
<p>Experience EasyEdit directly in your browser without downloading anything!</p>
137-
<div className="hero-buttons">
138-
<Link to="/docs" className="btn btn-secondary">📚 Documentation</Link>
139-
<a href="https://easyedit-web.web.app/" target="_blank" rel="noopener noreferrer" className="btn btn-primary">🚀 Try It Online</a>
140-
<Link to="/download" className="btn btn-secondary">⬇️ Download</Link>
137+
<div className="cta-links">
138+
<Link to="/EasyEdit/docs" className="cta-button secondary">📚 Docs</Link>
139+
<a href="/EasyEdit/webapp/" target="_blank" rel="noopener noreferrer" className="cta-button primary">🚀 Try It</a>
140+
<Link to="/EasyEdit/download" className="cta-button secondary">⬇️ Download</Link>
141141
</div>
142142
</div>
143143
</div>

docs-site/src/pages/Home.css

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,26 +36,56 @@
3636
flex-wrap: wrap;
3737
}
3838

39+
.hero-buttons .btn-primary {
40+
background-color: white;
41+
color: #667eea !important;
42+
text-shadow: none;
43+
}
44+
45+
.hero-buttons .btn-primary:hover {
46+
background-color: #f8f9ff;
47+
color: #5570d6 !important;
48+
}
49+
50+
.btn-webapp {
51+
background-color: #ffffff !important;
52+
color: #4a5568 !important;
53+
font-weight: 700 !important;
54+
text-shadow: none !important;
55+
border: 2px solid #e2e8f0 !important;
56+
}
57+
58+
.btn-webapp:hover {
59+
background-color: #f7fafc !important;
60+
color: #2d3748 !important;
61+
border-color: #cbd5e0 !important;
62+
transform: translateY(-2px);
63+
}
64+
3965
.btn {
4066
padding: 0.875rem 2rem;
4167
border-radius: 8px;
4268
font-weight: 600;
43-
text-decoration: none;
69+
text-decoration: none !important;
4470
transition: all 0.3s ease;
4571
display: inline-block;
4672
font-size: 1rem;
4773
border: 2px solid transparent;
74+
cursor: pointer;
4875
}
4976

5077
.btn-primary {
5178
background-color: white;
52-
color: #667eea;
79+
color: #667eea !important;
80+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
5381
}
5482

5583
.btn-primary:hover {
5684
transform: translateY(-2px);
57-
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
58-
text-decoration: none;
85+
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
86+
text-decoration: none !important;
87+
color: #5570d6 !important;
88+
background-color: #f8f9ff;
5989
}
6090

6191
.btn-secondary {

docs-site/src/pages/Home.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ export default function Home() {
2020
<Link to="/docs" className="btn btn-secondary">
2121
📚 Documentation
2222
</Link>
23-
<a href="https://easyedit-web.web.app/" target="_blank" rel="noopener noreferrer" className="btn btn-primary">
24-
🚀 Try It Online
23+
<a href="/EasyEdit/webapp/" target="_blank" rel="noopener noreferrer" className="btn btn-primary btn-webapp">
24+
🚀 WebApp
2525
</a>
2626
<Link to="/download" className="btn btn-secondary">
2727
⬇️ Download

0 commit comments

Comments
 (0)