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

FEAT[helpcenter]: added featured cards #621

Merged
merged 1 commit into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file added src/assets/image/email.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/assets/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ import creative from "../assets/image/creative.png";
import troubleshooting from "../assets/image/troubleshooting.png";
import started from "../assets/image/started.png";
import setting from "../assets/image/setting.png";
import email from "../assets/image/email.png";
export {
email,
tutorial,
bill,
creative,
Expand Down
79 changes: 78 additions & 1 deletion src/components/Needhelp/index.jsx
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;
1 change: 1 addition & 0 deletions src/views/app/Helpcentre/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ function HelpCentrePage() {
return (
<HomeLayout>
<HelpCentre />
<Needhelp />
</HomeLayout>
);
}
Expand Down