This commit is contained in:
2024-09-16 15:50:55 +05:00
parent da1240ad0f
commit 5db266ed4e
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ export function Footer() {
</div> </div>
<div className="lg:px-10 sm:px-6 px-4 py-[30px] flex items-center border-t border-[#3D425C] flex-1 justify-between sm:max-xl:row-start-2 sm:max-xl:col-start-2"> <div className="lg:px-10 sm:px-6 px-4 py-[30px] flex items-center border-t border-[#3D425C] flex-1 justify-between sm:max-xl:row-start-2 sm:max-xl:col-start-2">
<div> <div>
<Contact type="email" text="info@graff.tech" /> <Contact type="email" text="sam@graff.tech" />
<Contact type="phone" text="+971 58 506 0097" /> <Contact type="phone" text="+971 58 506 0097" />
</div> </div>
<div className="font-medium py-[14px] px-[10px] border border-[#3D425C] rounded-full m-text"> <div className="font-medium py-[14px] px-[10px] border border-[#3D425C] rounded-full m-text">
+1 -1
View File
@@ -18,7 +18,7 @@ export function Contacts() {
<h2 className="font-medium lg:col-span-7 sm:col-span-full h2 max-lg:mb-6"> <h2 className="font-medium lg:col-span-7 sm:col-span-full h2 max-lg:mb-6">
Хотите использовать интерактивные тренажеры в обучении? Хотите использовать интерактивные тренажеры в обучении?
<br /> <br />
<span className="text-gradient">Давайте обсудим детали.</span> <span className="text-gradient">Давайте обсудим детали</span>
</h2> </h2>
<Button <Button
color="primary" color="primary"
@@ -2,7 +2,7 @@ import { forwardRef } from 'react';
function SimulatorsItem({ text }: { text: string }) { function SimulatorsItem({ text }: { text: string }) {
return ( return (
<div className="lg:text-2xl sm:text-xl bg-[#3D425C4D] rounded-[44px] w-fit sm:px-5 sm:py-2 px-4 py-1.5"> <div className="text-sm bg-[#3D425C4D] rounded-[44px] w-fit sm:px-5 sm:py-2 px-4 py-1.5">
{text} {text}
</div> </div>
); );