-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update logo, font, radius (#276)
* update default text color * update title size * add padding to dropdown * update bg color * update font family * add create account banner section * change name and font * update banner * update radius to sm every where * Update page.tsx * Update RecipeForm.tsx --------- Co-authored-by: Joar Hansson <[email protected]>
- Loading branch information
1 parent
105b5ef
commit ee00f49
Showing
17 changed files
with
120 additions
and
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
:root[data-mantine-color-scheme="light"] { | ||
--mantine-color-body: var(--mantine-color-cream-0) !important; | ||
--mantine-color-text: var(--mantine-color-dark-5) !important; | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import { Paper, Flex, Box, Title, Button, Stack, Text } from "@mantine/core"; | ||
import { IconChefHat, IconCarrot, IconCheese } from "@tabler/icons-react"; | ||
import Link from "next/link"; | ||
|
||
export const CreateAccountBanner = () => { | ||
return ( | ||
<Paper | ||
component="section" | ||
p="xl" | ||
bg={"var(--mantine-color-default)"} | ||
radius={"sm"} | ||
shadow="xs" | ||
> | ||
<Flex justify="space-between" gap={"sm"}> | ||
<Box> | ||
<Title mb={"md"} order={2}> | ||
Save, Edit & Organize Recipes | ||
</Title> | ||
<Text maw={"60ch"}> | ||
Unlock the full experience by creating an account. Keep your recipes | ||
saved, customized, and perfectly organized. | ||
</Text> | ||
<Button component={Link} href={"/signup"} mt={"xl"}> | ||
Create Free Account | ||
</Button> | ||
</Box> | ||
<Stack m={"auto"} align="center" justify="center" gap={0}> | ||
<Flex direction={{ base: "column", sm: "row" }}> | ||
<IconChefHat | ||
style={{ | ||
color: "var(--mantine-color-dustyRed-7)", | ||
rotate: "-15deg", | ||
}} | ||
size={60} | ||
stroke={1} | ||
/> | ||
<IconCarrot | ||
style={{ color: "var(--mantine-color-dustyRed-7)" }} | ||
size={60} | ||
stroke={1} | ||
/> | ||
</Flex> | ||
<IconCheese | ||
style={{ color: "var(--mantine-color-dustyRed-7)" }} | ||
size={60} | ||
stroke={1} | ||
/> | ||
</Stack> | ||
</Flex> | ||
</Paper> | ||
); | ||
}; |
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
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
Oops, something went wrong.