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

Fix: blog page from "Blog.jsx" #155

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8b2f74e
blog.jsx modified
AryanKuAg Jan 29, 2024
73aae3d
fixed the image issue
AryanKuAg Jan 29, 2024
1a2b89d
fix: converted HomeAbout.jsx css into tailwind
AryanKuAg Jan 31, 2024
a290fc3
blog page bg color modified
AryanKuAg Feb 1, 2024
46a1c27
Made the blog pages responsive
AryanKuAg Feb 1, 2024
cb73b31
Merge branch 'main' of https://github.com/WikiPortal/DoodleCollab int…
AryanKuAg Feb 1, 2024
cf85733
Fixed the responsiveness of doodlecollab cards
AryanKuAg Feb 1, 2024
4b07577
fixed the installation spelling
AryanKuAg Feb 1, 2024
bb63c48
removed homebanner css part 1
AryanKuAg Feb 1, 2024
89294bc
100 lines remove css part 2
AryanKuAg Feb 1, 2024
7179326
100 lines removed part 3
AryanKuAg Feb 1, 2024
8e6b832
100 lines removed part 4
AryanKuAg Feb 2, 2024
d2c8219
Merge branch 'main' of https://github.com/WikiPortal/DoodleCollab int…
AryanKuAg Feb 9, 2024
3df270b
removed homeabout.css
AryanKuAg Feb 9, 2024
3b2ea62
removed homebanner.css
AryanKuAg Feb 9, 2024
089fe43
sub header fixed
AryanKuAg Feb 9, 2024
12a278f
homebanner done converstion
AryanKuAg Feb 9, 2024
2a0c843
blog css converted to tailwindcss
AryanKuAg Feb 9, 2024
acf3eb0
converted all footer css to tailwindcss
AryanKuAg Feb 9, 2024
3df9014
faq css converted
AryanKuAg Feb 10, 2024
a763a6d
converted joinus css to tailwindcss
AryanKuAg Feb 10, 2024
287af0c
navfooter css converted
AryanKuAg Feb 10, 2024
9e203fb
trust developers page converted
AryanKuAg Feb 10, 2024
94f4e54
auth.css converted
AryanKuAg Feb 11, 2024
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
10,194 changes: 10,194 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions src/components/About/HomeAbout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import collaborate from "../../assets/Home/collaborate.png";
import darkBackground from "../../assets/Home/dark-background.png";

import { useTheme } from "../../context/ThemeContext";
import "./homeabout.css";

const HomeAbout = () => {
const { isDarkMode } = useTheme();
Expand Down Expand Up @@ -47,25 +46,25 @@ const HomeAbout = () => {
}, [isDarkMode]);

return (
<section className="about-section">
<div className="about-container">
<div className="about-header">
<div className="key-feature">Key Feature</div>
<div className="about-head">
<section className="flex mb-5 justify-center mt-24 vs:mt-0">
<div className="flex flex-col w-full px-4">
<div className="h-[30vh] flex flex-col justify-evenly text-center items-center">
<div className="text-[15px] font-medium w-[140px] rounded-3xl p-[10px] bg-black text-white mb-4">Key Feature</div>
<div className="font-semibold text-[42px] leading-[48px]">
<p>Why use DoodleCollab ?</p>
</div>
<div className="about-para">
<div className="text-lg font-normal text-[#505256] leading-[30px] max-w-[550px]">
DoodleCollab revolutionizes collaboration with intuitive whiteboard
features and seamless real-time sharing.
</div>
</div>
<div className="about-boxes">
<div className="flex flex-col justify-center lg:grid-cols-3 xl:grid-cols-4 sm:grid sm:grid-cols-2 mx-auto">
{Array(4)
.fill()
.map((_, index) => (
<div
key={index}
className="about-box"
className="about-box flex flex-col h-[360px] w-[300px] break-words p-6 rounded-[20px] bg-white m-[10px] justify-center "
onMouseEnter={() => handleMouseEnter(index)}
onMouseLeave={handleMouseLeave}
style={glowEffectStyles(index)}
Expand All @@ -80,9 +79,10 @@ const HomeAbout = () => {
? project
: collaborate
}
className="w-[50px] mb-4"
alt={`item-${index}`}
/>
<div className="box-head">
<div className="text-[22px] leading-[32px] font-medium mb-4">
<b>
{index === 0
? "Bring Ideas to Live"
Expand All @@ -93,7 +93,7 @@ const HomeAbout = () => {
: "Live Collaboration"}
</b>
</div>
<div className="box-text">
<div className="text-lg mb-6 text-[#505256]">
{index === 0
? "DoodleCollab empowers users to bring their ideas to life, fostering creativity and innovation."
: index === 1
Expand All @@ -102,7 +102,7 @@ const HomeAbout = () => {
? "DoodleCollab offers project management tools, facilitating efficient organization, tracking, and coordination of tasks."
: "DoodleCollab enables live collaboration, allowing team members to work together, enhancing productivity."}
</div>
<a href="#" className="box-link">
<a href="#" className="text-[#4c4cfa] font-semibold">
<br></br>
See How
</a>
Expand Down
107 changes: 0 additions & 107 deletions src/components/About/homeabout.css

This file was deleted.

Loading
Loading