Skip to content

Commit 95d0acc

Browse files
Fix/categories card view (#59)
* fix/categories card section and navigation fixed * fix/commenting unused vars --------- Co-authored-by: Pawan Senpura <86240715+pawan-live@users.noreply.github.com>
1 parent fc009a6 commit 95d0acc

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.eslintrc.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"extends": ["next/core-web-vitals", "next/typescript"]
2+
"extends": ["next/core-web-vitals", "next/typescript"],
3+
"rules": {
4+
"no-unused-vars": "off"
5+
}
36
}

src/app/components/InfoSection/InfoSection.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ function InfoSection() {
1818
Developed in collaboration with healthcare professionals, our
1919
platform provides reliable medical information, self-care tips, and
2020
the latest treatment options to help patients better manage their
21-
condition. Whether you're newly diagnosed or looking for ways to
22-
improve your quality of life, Arthritis.lk is here to guide you with
23-
expert insights and practical advice.
21+
condition. Whether you&apos;re newly diagnosed or looking for ways
22+
to improve your quality of life, Arthritis.lk is here to guide you
23+
with expert insights and practical advice.
2424
</p>
2525
<Link
2626
href="/about"

src/app/page.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import AZCards from "@/app/components/AZCards";
2-
import translations from "@/data/translations.json";
3-
import { Translations } from "@/app/types";
1+
// import AZCards from "@/app/components/AZCards";
2+
// import translations from "@/data/translations.json";
3+
// import { Translations } from "@/app/types";
44
import ContactCard from "./components/ContactCard";
55
import MainCategorySection from "./components/MainCategorySection";
66
import HeroSection from "./components/HeroSection/HeroSection";
77
import InfoSection from "./components/InfoSection/InfoSection";
8-
const translationsData: Translations = translations;
8+
// const translationsData: Translations = translations;
99

1010
// fetch data from API
1111

0 commit comments

Comments
 (0)