-
-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
52 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); | ||
@import url('non.geist'); | ||
|
||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
body { | ||
font-family: 'Inter', sans-serif; | ||
font-size: 20px; | ||
margin: 0; | ||
padding: 0; | ||
width: 100vw; | ||
height: 100vh; | ||
overflow: hidden; | ||
font-family: 'Geist Variable', sans-serif; | ||
font-size: 20px; | ||
margin: 0; | ||
padding: 0; | ||
width: 100vw; | ||
height: 100vh; | ||
overflow: hidden; | ||
} | ||
|
||
code { | ||
font-family: 'Inter', sans-serif; | ||
font-family: 'Geist Variable', sans-serif; | ||
} | ||
|
||
a, | ||
a:visited, | ||
a:hover, | ||
a:active { | ||
text-decoration: none; | ||
text-decoration: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { Language } from '@mui/icons-material'; | ||
import { ChromeIcon } from 'lucide-react'; | ||
|
||
const BrowserIcon = () => <Language fontSize="large" />; | ||
const BrowserIcon = () => <ChromeIcon size={30}/>; | ||
|
||
export default BrowserIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import React from 'react'; | ||
import { CalculatorIcon } from '../../../../../apps/calculator/components/CalculatorIcon'; | ||
import { Calculator as LCalc } from 'lucide-react'; | ||
|
||
const Calculator: React.FC = () => <CalculatorIcon fontSize="large" />; | ||
const Calculator: React.FC = () =><LCalc size={30} />; | ||
|
||
export default Calculator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import React from 'react'; | ||
import { CameraAlt } from '@mui/icons-material'; | ||
import { Camera as LCamera } from 'lucide-react'; | ||
|
||
const Camera: React.FC = () => <CameraAlt fontSize="large" />; | ||
const Camera: React.FC = () => <LCamera size={30} />; | ||
|
||
export default Camera; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import React from 'react'; | ||
import { Contacts } from '@mui/icons-material'; | ||
import { BookUser } from 'lucide-react'; | ||
|
||
const ContactIcon: React.FC = () => <Contacts fontSize="large" />; | ||
const ContactIcon: React.FC = () => <BookUser size={30} />; | ||
|
||
export default ContactIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import React from 'react'; | ||
import { Phone } from '@mui/icons-material'; | ||
import { Phone } from 'lucide-react'; | ||
|
||
const DialerIcon: React.FC = () => <Phone fontSize="large" />; | ||
const DialerIcon: React.FC = () => <Phone size={30} />; | ||
|
||
export default DialerIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import React from 'react'; | ||
import { MonetizationOn } from '@mui/icons-material'; | ||
import { Store } from 'lucide-react'; | ||
|
||
const MarketplaceIcon: React.FC = () => <MonetizationOn fontSize="large" />; | ||
const MarketplaceIcon: React.FC = () => <Store size={30}/> | ||
|
||
export default MarketplaceIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import React from 'react'; | ||
import { Favorite } from '@mui/icons-material'; | ||
import { HeartHandshake } from 'lucide-react'; | ||
|
||
const MatchIcon: React.FC = () => <Favorite fontSize="large" />; | ||
const MatchIcon: React.FC = () => <HeartHandshake size={30} /> | ||
|
||
export default MatchIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import React from 'react'; | ||
import { Message } from '@mui/icons-material'; | ||
import { MessageSquare } from 'lucide-react'; | ||
|
||
const MessagesIcon: React.FC = () => <Message fontSize="large" />; | ||
const MessagesIcon: React.FC = () => <MessageSquare size={30} />; | ||
|
||
export default MessagesIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import React from 'react'; | ||
import StickyNote from '../misc/StickyNote'; | ||
import { StickyNote } from 'lucide-react'; | ||
|
||
const NotesIcon: React.FC = () => <StickyNote fontSize="large" />; | ||
const NotesIcon: React.FC = () => <StickyNote size={30} /> | ||
|
||
export default NotesIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import React from 'react'; | ||
import { Settings } from '@mui/icons-material'; | ||
import { Settings } from 'lucide-react'; | ||
|
||
const SettingsIcon: React.FC = () => <Settings fontSize="large" />; | ||
const SettingsIcon: React.FC = () => <Settings size={30} />; | ||
|
||
export default SettingsIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.