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

added GPDR logo in footer #304

Merged
merged 3 commits into from
Mar 7, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
updated
added tailwind class and updated width of GDPR logo
  • Loading branch information
akash-dyte committed Mar 7, 2024
commit eda780dd1f261c6b911209438e5f53608e43abda
6 changes: 3 additions & 3 deletions src/components/homepage/HomeFooter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@



function MyButton(){

Check warning on line 11 in src/components/homepage/HomeFooter.jsx

View workflow job for this annotation

GitHub Actions / lint

'MyButton' is defined but never used
return (
<button>
Some text here
Expand Down Expand Up @@ -238,9 +238,9 @@

function Safety({ className }) {
return (
<div style={{paddingRight: '16px'}}
<div
className={clsx(
'flex h-24 max-w-[418px] overflow-clip rounded-2xl bg-white dark:bg-[#474747]',
'flex h-24 pr-4 max-w-[418px] overflow-clip rounded-2xl bg-white dark:bg-[#474747]',
className
)}
>
Expand All @@ -252,7 +252,7 @@
<div className="flex flex-1 items-center justify-around px-6">
<img src="/img/soc-compliant-1.png" alt="SOC Compliant" />
<img src="/img/vector.png" alt="HIPAA Compliant" />
<img style={{width: '65px'}} src="/img/gdpr.png" alt="GDPR compliant" />
<img style={{width: '62px'}} src="/img/gdpr.png" alt="GDPR compliant" />

</div>
</div>
Expand Down Expand Up @@ -303,7 +303,7 @@



function Links({ name, links, isAccordion }) {

Check warning on line 306 in src/components/homepage/HomeFooter.jsx

View workflow job for this annotation

GitHub Actions / lint

'isAccordion' is defined but never used

//To control accordion in footer
const [activeAccordion, setActiveAccordion] = useState(null);
Expand Down
Loading