Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/ux improvements - This PR updates a line from PR #3091 causing wrong brand color. Apologies for the oversight! #3092

Merged
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
735946d
Modify the style of navbar to match Talawa docs
Jan 26, 2025
32ebcec
Change navbar links to ensure consistency across websites
Jan 26, 2025
5d59df2
Modify navbar and sidebar styles to match Talawa docs
Jan 26, 2025
cea6f93
Remove unnecessary css icon styling to remove external link icon in n…
Jan 26, 2025
16092d3
Fix styling bugs when deployed
Jan 27, 2025
9808d51
Delete unnecessary sections from homepage
Jan 27, 2025
06e88ca
Fix footer text from My Project, Inc. to The Palisadoes Foundation, LLC.
Jan 27, 2025
4f4911c
Ensure responsiveness
Jan 27, 2025
3418d1c
Update homepage with minimal design
Jan 27, 2025
82f4f73
Delete unnecessary styles from custom.css
Jan 27, 2025
a582a71
Delete unnecessary styles from index.css and update style for markdow…
Jan 27, 2025
6178729
Organize index.css for better readability
Jan 27, 2025
6b9ed6f
Organize custom.css for better readability
Jan 27, 2025
f904d97
Modify navabar to have active nav link style
Jan 27, 2025
f335251
Merge branch 'develop-postgres' into feature/ux-improvements
Jan 27, 2025
3957ed2
Resolve coderabbitai suggestions
Jan 27, 2025
eb81114
Resolve coderabbitai suggestions, breakpoints
Jan 28, 2025
2fbab76
Resolve coderabbitai suggestions, breakpoints 2
Jan 28, 2025
b3db4f2
Fix bug from coderabbit suggestion
Jan 28, 2025
26c1eba
Improve accessibility regarding external link icon
Jan 28, 2025
ba9ef40
Make header hero height style more fluid
Jan 28, 2025
d232016
Change hardcoded CSS for better maintainability
Jan 28, 2025
4418760
Merge branch 'develop-postgres' into feature/ux-improvements
Abhi-MS Jan 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions docs/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ const config: Config = {
target: "_self",
},
{
to: "/docs",
activeBasePath: "docs",
label: "API Guide",
position: "left",
href: "/docs",
target: "_self",
},
{
label: "Demo",
Expand All @@ -111,15 +111,6 @@ const config: Config = {
footer: {
style: "dark",
links: [
{
title: "Docs",
items: [
{
label: "Docs",
to: "/docs",
},
],
},
{
title: "Community",
items: [
Expand Down Expand Up @@ -171,7 +162,7 @@ const config: Config = {
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`,
copyright: `Copyright © ${new Date().getFullYear()} The Palisadoes Foundation, LLC. Built with Docusaurus.`,
},
prism: {
theme: prismThemes.github,
Expand Down
70 changes: 0 additions & 70 deletions docs/src/components/HomepageFeatures/index.tsx

This file was deleted.

11 changes: 0 additions & 11 deletions docs/src/components/HomepageFeatures/styles.module.css

This file was deleted.

41 changes: 0 additions & 41 deletions docs/src/components/animations/_dissectionAnimation.js

This file was deleted.

50 changes: 0 additions & 50 deletions docs/src/components/animations/_headerAnimation.js

This file was deleted.

38 changes: 0 additions & 38 deletions docs/src/components/layout/EightPanel.tsx

This file was deleted.

15 changes: 0 additions & 15 deletions docs/src/components/layout/FifthPanel.tsx

This file was deleted.

40 changes: 0 additions & 40 deletions docs/src/components/layout/FourthPanel.tsx

This file was deleted.

39 changes: 8 additions & 31 deletions docs/src/components/layout/HeaderHero.tsx
Original file line number Diff line number Diff line change
@@ -1,42 +1,19 @@
import React from "react";
import Section from "../../utils/Section";
import TwoColumns from "../../utils/TwoColumns";
import HomeCallToAction from "../../utils/HomeCallToAction";
import useBaseUrl from "@docusaurus/useBaseUrl";


function HeaderHero() {
return (
<Section background="light" className="HeaderHero">
<div className="socialLinks"></div>
<TwoColumns
reverse
columnOne={
<div className="image-container">
<img
className="custom-image bounce-animation"
src={useBaseUrl("img/image-01.png")}
alt="Talawa member management software interface showcase"
loading="lazy"
// srcSet={`${useBaseUrl("img/image-01.png")} 1x, ${useBaseUrl("img/[email protected]")} 2x`}
/>
</div>
}
columnTwo={
<>
<h1 className="title" aria-label="Talawa - Member Management Software">
<span>Talawa</span>
<span className="tagline">Member Management Software</span>
</h1>
<p className="description" aria-label="Target audience description">
For open source projects, charities and other non-profits
</p>
<div className="buttons">
<HomeCallToAction />
</div>
</>
}
/>
<h1 className="title">Talawa</h1>
<h2 className="tagline">API Docs</h2>
<p className="description">
API Backend for Talawa Admin and Talawa Mobile App
</p>
<div className="buttons">
<HomeCallToAction />
</div>
</Section>
);
}
Expand Down
17 changes: 0 additions & 17 deletions docs/src/components/layout/SecondPanel.tsx

This file was deleted.

14 changes: 0 additions & 14 deletions docs/src/components/layout/SeventhPanel.tsx

This file was deleted.

Loading
Loading