Skip to content

Commit

Permalink
Merge branch 'main' into feedback/fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
t1kvxx authored Jul 22, 2024
2 parents 2fda4fe + b11077f commit 75c8c13
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 39 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from "react";
import { css } from "@emotion/react";
import Image from "next/image";

import SectionWrapper from "@/core/components/common/SectionWrapper";
import theme from "@/core/styles/theme";
import Image from "next/image";
import { convertPxToRem } from "@/core/utils/convertPxToRem";

import { items, text } from "./constants";
Expand Down Expand Up @@ -50,7 +50,6 @@ const cssStyles = {
display: flex;
flex-direction: column;
align-items: center;
padding: ${convertPxToRem(15)} 0 ${convertPxToRem(70)} 0
padding: ${convertPxToRem(15)} 0 ${convertPxToRem(70)} 0;
gap: 100px;
padding-bottom: ${convertPxToRem(100)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,26 @@ import { css } from "@emotion/react";

import { CommonEntity } from "core/types";

import { externalLinks } from "@/core/constants/externalLinks";
import LinkButton from "@/core/components/common/LinkButton";
import theme from "@/core/styles/theme";
import { convertPxToRem } from "@/core/utils/convertPxToRem";

interface PropTypes extends CommonEntity {
label?: string | null;
href?: string;
}

const OptimizedMobileButton = ({
label = null,
href = "",
styles,
children,
}: PropTypes) => {
return (
<LinkButton
type="external"
data={{
href,
label,
}}
styles={styles}
Expand Down
12 changes: 0 additions & 12 deletions src/pages/support.tsx

This file was deleted.

12 changes: 0 additions & 12 deletions src/pages/tradeSmart.tsx

This file was deleted.

12 changes: 0 additions & 12 deletions src/pages/whySpark.tsx

This file was deleted.

0 comments on commit 75c8c13

Please sign in to comment.