Skip to content

Commit

Permalink
fix: formating issue
Browse files Browse the repository at this point in the history
  • Loading branch information
yeasin2002 committed Nov 14, 2024
1 parent 7c12cf8 commit 1e53d50
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 13 deletions.
13 changes: 13 additions & 0 deletions app/home2.0/FAQs/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from "react"

import { MainTitle } from "../MainTitle"

interface Props extends React.ComponentProps<"div"> {}

export const FAQs = ({ ...props }: Props) => {
return (
<div {...props}>
<MainTitle title="FAQs" />
</div>
)
}
6 changes: 2 additions & 4 deletions app/home2.0/brand-and-statistics/Statistics.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import React from "react";


import React from "react"

import { Separator } from "@/components/ui"

Expand Down Expand Up @@ -32,4 +30,4 @@ export const Statistics = ({ ...props }: Props) => {
})}
</div>
)
}
}
6 changes: 2 additions & 4 deletions app/home2.0/brand-and-statistics/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import React from "react";


import React from "react"

import { Separator } from "@/components/ui"

Expand All @@ -17,4 +15,4 @@ export const BrandAndStatistics = ({ ...props }: Props) => {
<Statistics />
</div>
)
}
}
8 changes: 3 additions & 5 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
"use client";

import { SiteNave } from "@/components/SiteNav";

"use client"

import { SiteNave } from "@/components/SiteNav"

import {
BrandAndStatistics,
Expand All @@ -26,4 +24,4 @@ export default function IndexPage() {
</div>
</>
)
}
}

0 comments on commit 1e53d50

Please sign in to comment.