-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FEAT[helpcenter]: added featured cards (#621)
closes issue #619 1. Added Help Feature cards for beginners to get started 2. Designed the featured icons
- Loading branch information
Showing
4 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,84 @@ | ||
import React from "react"; | ||
import { | ||
bill, | ||
blog, | ||
creative, | ||
query, | ||
setting, | ||
started, | ||
support, | ||
troubleshooting, | ||
tutorial, | ||
} from "../../assets"; | ||
|
||
const Needhelp = () => { | ||
return <div>index</div>; | ||
return ( | ||
<div className="w-full h-[150vh]"> | ||
<div className="flex flex-col justify-center items-center"> | ||
<h1 className="text-4xl text-violet-400">Need help ?</h1> | ||
<p className="text-lg mt-5">Check out our serivces to get started</p> | ||
</div> | ||
|
||
<div className="grid grid-cols-3 gap-20 ml-20 mr-20 mt-10"> | ||
<div className="border p-5 pb-20 pt-20 rounded-lg blogtitle helpbox"> | ||
<div className="flex flex-col justify-center items-center"> | ||
<img src={started} alt="" className="w-24 h-24" /> | ||
<h1 className="text-xl mt-5 text-violet-300">Getting Started</h1> | ||
<p className="text-center mt-5 leading-relaxed text-gray-300"> | ||
Set up your Fahsion Froze account and start to customize your t-shirt | ||
</p> | ||
</div> | ||
</div> | ||
<div className="border p-5 pb-20 pt-20 rounded-lg blogtitle helpbox"> | ||
<div className="flex flex-col justify-center items-center"> | ||
<img src={creative} alt="" className="w-24 h-24" /> | ||
<h1 className="text-xl mt-5 text-violet-300">Design tips to start</h1> | ||
<p className="text-center mt-5 leading-relaxed text-gray-300"> | ||
"Design an intuitive Help Center for seamless user assistance and | ||
engagement." | ||
</p> | ||
</div> | ||
</div> | ||
<div className="border p-5 pb-20 pt-20 rounded-lg blogtitle helpbox"> | ||
<div className="flex flex-col justify-center items-center"> | ||
<img src={setting} alt="" className="w-24 h-24" /> | ||
<h1 className="text-xl mt-5 text-violet-300">Settings & Preferences</h1> | ||
<p className="text-center mt-5 leading-relaxed text-gray-300"> | ||
Adjust notification, set up signatures, and manage aliases | ||
</p> | ||
</div> | ||
</div> | ||
<div className="border p-5 pb-20 pt-20 rounded-lg blogtitle helpbox"> | ||
<div className="flex flex-col justify-center items-center"> | ||
<img src={bill} alt="" className="w-24 h-24" /> | ||
<h1 className="text-xl mt-5 text-violet-300">Teams & Billings</h1> | ||
<p className="text-center mt-5 leading-relaxed text-gray-300"> | ||
Manage your workspace settings and members | ||
</p> | ||
</div> | ||
</div> | ||
<div className="border p-5 pb-20 pt-20 rounded-lg blogtitle helpbox"> | ||
<div className="flex flex-col justify-center items-center"> | ||
<img src={tutorial} alt="" className="w-24 h-24" /> | ||
<h1 className="text-xl mt-5 text-violet-300">Step-by-Step Tutorial</h1> | ||
<p className="text-center mt-5 leading-relaxed text-gray-300"> | ||
Join our interactive sessions, enriching the t-shirt customization | ||
journey with clear visuals and user-friendly guidance | ||
</p> | ||
</div> | ||
</div> | ||
<div className="border p-5 pb-20 pt-20 rounded-lg blogtitle helpbox"> | ||
<div className="flex flex-col justify-center items-center"> | ||
<img src={troubleshooting} alt="" className="w-24 h-24" /> | ||
<h1 className="text-xl mt-5 text-violet-300">TroubleShooting</h1> | ||
<p className="text-center mt-5 leading-relaxed text-gray-300"> | ||
Find answers to common issues and questions | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Needhelp; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ function HelpCentrePage() { | |
return ( | ||
<HomeLayout> | ||
<HelpCentre /> | ||
<Needhelp /> | ||
</HomeLayout> | ||
); | ||
} | ||
|
cb85f34
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
product-3-d – ./
product-3-d.vercel.app
product-3-d-amanjaiman1.vercel.app
product-3-d-git-main-amanjaiman1.vercel.app