-
Notifications
You must be signed in to change notification settings - Fork 44
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: Add Hover Effect on cards of team section. #34 #48
Open
naitikhoriya1
wants to merge
2
commits into
DevXsphere:main
Choose a base branch
from
naitikhoriya1:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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,16 +1,27 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap" | ||
/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://unpkg.com/[email protected]/dist/css/bootstrap.min.css" | ||
/> | ||
<title>devXsphere</title> | ||
|
||
<link rel="stylesheet" href="https://cdn.materialdesignicons.com/6.5.95/css/materialdesignicons.min.css"> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.materialdesignicons.com/6.5.95/css/materialdesignicons.min.css" | ||
/> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.jsx"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
</body> | ||
</html> |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we don't need faq section kindly read our readme file in ./frontend folder. |
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,26 +1,33 @@ | ||
import { Html, useProgress} from '@react-three/drei' | ||
import React from 'react' | ||
import { Html, useProgress } from "@react-three/drei"; | ||
import React from "react"; | ||
// import { toFixed } from '@react-three/drei'; | ||
|
||
const CanvasLoader = () => { | ||
const { progress } = useProgress(); | ||
const { progress } = useProgress(); | ||
return ( | ||
<Html | ||
as='div' | ||
center | ||
as="div" | ||
center | ||
style={{ | ||
display: "flex", | ||
alignItems: "center", | ||
justifyContent: "center", | ||
flexDirection: "column", | ||
}} | ||
> | ||
<span className="canvas-loader" /> | ||
<p | ||
style={{ | ||
display: 'flex', | ||
alignItems: 'center', | ||
justifyContent: 'center', | ||
flexDirection: 'column', | ||
fontSize: 14, | ||
color: "#F1F1F1", | ||
fontWeight: 800, | ||
marginTop: 40, | ||
}} | ||
> | ||
<span className='canvas-loader' /> | ||
<p style={{ fontSize: 14, color: '#F1F1F1', fontWeight: 800, marginTop: 40}}> | ||
{ progress != 0 ? `${progress.toFixed(2)}%` : 'Loading...'} | ||
</p> | ||
> | ||
{progress != 0 ? `${progress.toFixed(2)}%` : "Loading..."} | ||
</p> | ||
</Html> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
export default CanvasLoader | ||
export default CanvasLoader; |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please keep it in one line consize. |
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 |
---|---|---|
@@ -0,0 +1,149 @@ | ||
import React from "react"; | ||
|
||
const Faq = () => { | ||
return ( | ||
<section className="bg-light py-3 py-md-5"> | ||
<div className="container"> | ||
<div className="row gy-5 gy-lg-0 align-items-lg-center"> | ||
<div className="col-12 col-lg-6"> | ||
<img | ||
className="img-fluid rounded" | ||
loading="lazy" | ||
src="./assets/img/faq-img-1.png" | ||
alt="How can we help you?" | ||
/> | ||
</div> | ||
<div className="col-12 col-lg-6"> | ||
<div className="row justify-content-xl-end"> | ||
<div className="col-12 col-xl-11"> | ||
<h2 className="h1 mb-3">How can we help you?</h2> | ||
<p className="lead fs-4 text-secondary mb-5"> | ||
We hope you have found an answer to your question. If you need | ||
any help, please search your query on our Support Center or | ||
contact us via email. | ||
</p> | ||
<div | ||
className="accordion accordion-flush" | ||
id="accordionExample" | ||
> | ||
<div className="accordion-item"> | ||
<h2 className="accordion-header" id="headingOne"> | ||
<button | ||
className="accordion-button" | ||
type="button" | ||
data-bs-toggle="collapse" | ||
data-bs-target="#collapseOne" | ||
aria-expanded="true" | ||
aria-controls="collapseOne" | ||
> | ||
How Do I Change My Billing Information? | ||
</button> | ||
</h2> | ||
<div | ||
id="collapseOne" | ||
className="accordion-collapse collapse show" | ||
aria-labelledby="headingOne" | ||
data-bs-parent="#accordionExample" | ||
> | ||
<div className="accordion-body"> | ||
<p> | ||
To change your billing information, please follow | ||
these steps: | ||
</p> | ||
<ul> | ||
<li> | ||
Go to our website and sign in to your account. | ||
</li> | ||
<li> | ||
Click on your profile picture in the top right | ||
corner of the page and select "Account Settings." | ||
</li> | ||
<li> | ||
Under the "Billing Information" section, click on | ||
"Edit." | ||
</li> | ||
<li>Make your changes and click on "Save."</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="accordion-item"> | ||
<h2 className="accordion-header" id="headingTwo"> | ||
<button | ||
className="accordion-button collapsed" | ||
type="button" | ||
data-bs-toggle="collapse" | ||
data-bs-target="#collapseTwo" | ||
aria-expanded="false" | ||
aria-controls="collapseTwo" | ||
> | ||
How Does Payment System Work? | ||
</button> | ||
</h2> | ||
<div | ||
id="collapseTwo" | ||
className="accordion-collapse collapse" | ||
aria-labelledby="headingTwo" | ||
data-bs-parent="#accordionExample" | ||
> | ||
<div className="accordion-body"> | ||
A payment system is a way to transfer money from one | ||
person or organization to another. It is a complex | ||
process that involves many different parties, including | ||
banks, credit card companies, and merchants. | ||
</div> | ||
</div> | ||
</div> | ||
<div className="accordion-item"> | ||
<h2 className="accordion-header" id="headingThree"> | ||
<button | ||
className="accordion-button collapsed" | ||
type="button" | ||
data-bs-toggle="collapse" | ||
data-bs-target="#collapseThree" | ||
aria-expanded="false" | ||
aria-controls="collapseThree" | ||
> | ||
How Do I Cancel My Account? | ||
</button> | ||
</h2> | ||
<div | ||
id="collapseThree" | ||
className="accordion-collapse collapse" | ||
aria-labelledby="headingThree" | ||
data-bs-parent="#accordionExample" | ||
> | ||
<div className="accordion-body"> | ||
<p> | ||
To cancel your account, please follow these steps: | ||
</p> | ||
<ul> | ||
<li> | ||
Go to our website and sign in to your account. | ||
</li> | ||
<li> | ||
Click on your profile picture in the top right | ||
corner of the page and select "Account Settings." | ||
</li> | ||
<li> | ||
Scroll to the bottom of the page and click on | ||
"Cancel Account." | ||
</li> | ||
<li> | ||
Enter your password and click on "Cancel Account." | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
}; | ||
|
||
export default Faq; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
we're using tailwind so kindly contribute using it.