Skip to content

Commit 4688ee5

Browse files
committed
UI changes for space fixing and bavbar content
1 parent a45c1e0 commit 4688ee5

3 files changed

Lines changed: 70 additions & 17 deletions

File tree

docusaurus.config.js

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -109,32 +109,20 @@ const config = {
109109
src: 'img/logoDocWire.JPG',
110110
},
111111
items: [
112-
{ to: '/about-us', label: 'About Us', position: 'left' },
113112
{ to: '/showcases', label: 'Showcases', position: 'left' },
114-
{
115-
href: 'https://docwire.readthedocs.io/',
116-
position: 'left',
117-
label: 'Documentation',
118-
},
119-
{
120-
href: 'https://github.com/docwire/docwire/releases',
121-
label: 'Download',
122-
position: 'left',
123-
},
124113
{ to: '/blog', label: 'Blog', position: 'left' },
125114
{ to: '/tech-dive', label: 'Tech Dive', position: 'left' },
126-
{ to: '/contact-us', label: 'Contact Us', position: 'right', className: 'button-pill nav-cta' },
115+
{ to: '/about-us', label: 'About Us', position: 'right', className: 'button-pill nav-cta' },
127116
{
128-
href: 'https://github.com/docwire/docwire',
129-
label: 'GitHub',
117+
href: 'https://docwire.readthedocs.io/',
118+
label: 'Get Started',
130119
position: 'right',
131120
},
132121
],
133122
},
134123
footer: {
135124
links: [
136125
{
137-
title: 'Legal',
138126
items: [
139127
{
140128
label: 'Privacy Policy',
@@ -144,6 +132,14 @@ const config = {
144132
label: 'Terms of Use',
145133
to: '/terms-of-service',
146134
},
135+
{
136+
label: 'Contact Us',
137+
to: '/contact-us',
138+
},
139+
{
140+
label: 'GitHub',
141+
href: 'https://github.com/docwire/docwire',
142+
},
147143
],
148144
},
149145
],

src/containers/components/home/wingssection.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/* ─── Wings Section ─────────────────────────────────────────────────────── */
22

33
.docwire__wingssection-container {
4-
padding-top: 100px;
5-
padding-bottom: 60px;
4+
padding-top: 50px;
5+
padding-bottom: 50px;
66

77
/* Centre everything in a column */
88
display: flex;

src/css/custom.css

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,3 +369,60 @@ p {
369369
opacity: 0.6;
370370
transform: none;
371371
}
372+
373+
/*Footer Redesign*/
374+
375+
.footer {
376+
padding: 2rem 0;
377+
border-top: 1px solid rgba(255,255,255,0.08);
378+
}
379+
380+
.footer__container {
381+
width: min(1200px, 92vw);
382+
margin: 0 auto;
383+
}
384+
385+
.footer__links {
386+
display: flex;
387+
justify-content: center;
388+
align-items: center;
389+
margin-bottom: 1rem;
390+
}
391+
392+
.footer__col {
393+
margin: 0 !important;
394+
}
395+
396+
.footer__title {
397+
display: none;
398+
}
399+
400+
.footer__items {
401+
display: flex;
402+
flex-direction: row;
403+
flex-wrap: wrap;
404+
gap: 2rem;
405+
justify-content: center;
406+
align-items: center;
407+
}
408+
409+
.footer__item {
410+
margin: 0;
411+
}
412+
413+
.footer__link-item {
414+
font-family: var(--font-family-ui);
415+
opacity: 0.85;
416+
transition: opacity 0.2s ease;
417+
}
418+
419+
.footer__link-item:hover {
420+
opacity: 1;
421+
text-decoration: none;
422+
}
423+
424+
.footer__copyright {
425+
text-align: center;
426+
opacity: 0.65;
427+
font-size: 0.95rem;
428+
}

0 commit comments

Comments
 (0)