diff --git a/README.md b/README.md index 8fdcf95..faa3838 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -# nepalingo +# NepaLingo A website to learn the indigenous language of Nepal. -# Contributors +## Contributors The contributors of this project are participants of Incubate Nepal. -# Mentors +### Mentors -## Christina Kayastha +#### Christina Kayastha @@ -21,7 +21,7 @@ The contributors of this project are participants of Incubate Nepal.
-## Binam Kayastha +#### Binam Kayastha @@ -34,8 +34,8 @@ The contributors of this project are participants of Incubate Nepal.
-# Peer Mentor -## Hemanta Bhandari +### Peer Mentor +#### Hemanta Bhandari
@@ -47,9 +47,9 @@ The contributors of this project are participants of Incubate Nepal.
-# Mentees +### Mentees -## Saphal Upreti +#### Saphal Upreti
@@ -61,7 +61,7 @@ The contributors of this project are participants of Incubate Nepal.
-## Sanskar Lamsal +#### Sanskar Lamsal @@ -74,7 +74,7 @@ The contributors of this project are participants of Incubate Nepal.
-## Aanchal Nancy Jha +#### Aanchal Nancy Jha @@ -87,7 +87,7 @@ The contributors of this project are participants of Incubate Nepal.
-## Puja Tajpuriya +#### Puja Tajpuriya
@@ -99,7 +99,7 @@ The contributors of this project are participants of Incubate Nepal.
-## Aditya Bikram Thakur +#### Aditya Bikram Thakur
@@ -111,7 +111,7 @@ The contributors of this project are participants of Incubate Nepal.
-## Devaki Rawal +#### Devaki Rawal diff --git a/nepalingo-web/README.md b/nepalingo-web/README.md index 164c257..54370ee 100644 --- a/nepalingo-web/README.md +++ b/nepalingo-web/README.md @@ -1,4 +1,4 @@ -# nepalingo +# NepaLingo A website to learn the indigenous language of Nepal. This project is a React application built with TypeScript, Vite, and Tailwind CSS. Below are the steps to set up and run the project. diff --git a/nepalingo-web/src/components/button/Button.tsx b/nepalingo-web/src/components/Button.tsx similarity index 100% rename from nepalingo-web/src/components/button/Button.tsx rename to nepalingo-web/src/components/Button.tsx diff --git a/nepalingo-web/src/components/card/Card.tsx b/nepalingo-web/src/components/Card.tsx similarity index 92% rename from nepalingo-web/src/components/card/Card.tsx rename to nepalingo-web/src/components/Card.tsx index f55a964..c355935 100644 --- a/nepalingo-web/src/components/card/Card.tsx +++ b/nepalingo-web/src/components/Card.tsx @@ -1,4 +1,7 @@ import React, { useState } from 'react'; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { faVolumeHigh } from '@fortawesome/free-solid-svg-icons'; + const Card: React.FC<{ Word: string; @@ -47,7 +50,7 @@ const Card: React.FC<{

{Pronunciation}

{PronounciationUrl && ( )} diff --git a/nepalingo-web/src/components/button/button.tsx b/nepalingo-web/src/components/button/button.tsx deleted file mode 100644 index a6f6c2e..0000000 --- a/nepalingo-web/src/components/button/button.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React, { forwardRef } from 'react'; - -interface ButtonProps extends React.ButtonHTMLAttributes { - -} - -const Button = forwardRef((props, ref) => { - const { className, children, ...rest } = props; - - const buttonClasses = `bg-blue-500 hover:md:bg-opacity-80 text-white font-bold py-2 px-4 rounded ${className}`; - - return ( - - ); -}); - -Button.displayName = 'Button'; - -export default Button;