1+ import React from 'react' ;
2+ import styled from 'styled-components' ;
3+ import Button from '../components/button' ;
4+ import { COLOR , BUTTON_COLOR } from '../constants' ;
5+
6+ const Container = styled . div `
7+ background-color: ${ COLOR . MIDNIGHT_PURPLE } ;
8+ ` ;
9+
10+ const Section = styled . div `
11+ margin: 40px;
12+ ` ;
13+
14+ const Row = styled . div `
15+ display: flex;
16+ margin: 10px;
17+ ` ;
18+
19+ const ButtonContainer = styled . div `
20+ margin: 10px;
21+ ` ;
22+
23+ const BUTTON_TEXT = "Button"
24+
25+ export default function Charcuterie ( ) {
26+ return (
27+ < Container >
28+ < Section >
29+ < Row >
30+ < ButtonContainer >
31+ < Button color = { BUTTON_COLOR . PRIMARY } contentColor = { COLOR . MIDNIGHT_PURPLE } >
32+ { BUTTON_TEXT }
33+ </ Button >
34+ </ ButtonContainer >
35+
36+ < ButtonContainer >
37+ < Button color = { BUTTON_COLOR . PRIMARY } contentColor = { COLOR . MIDNIGHT_PURPLE } hoverContentColor = { COLOR . TEAL } hoverBackgroundColor = { BUTTON_COLOR . HOVER_PRIMARY } >
38+ { BUTTON_TEXT }
39+ </ Button >
40+ </ ButtonContainer >
41+
42+ < ButtonContainer >
43+ < Button disabled >
44+ { BUTTON_TEXT }
45+ </ Button >
46+ </ ButtonContainer >
47+
48+ </ Row >
49+
50+ < Row >
51+ < ButtonContainer >
52+ < Button color = { BUTTON_COLOR . SECONDARY } contentColor = { COLOR . MIDNIGHT_PURPLE } >
53+ { BUTTON_TEXT }
54+ </ Button >
55+ </ ButtonContainer >
56+
57+ < ButtonContainer >
58+ < Button color = { BUTTON_COLOR . SECONDARY } contentColor = { COLOR . MIDNIGHT_PURPLE } hoverBackgroundColor = { COLOR . LIGHT_GRAY } >
59+ { BUTTON_TEXT }
60+ </ Button >
61+ </ ButtonContainer >
62+
63+ < ButtonContainer >
64+ < Button disabled >
65+ { BUTTON_TEXT }
66+ </ Button >
67+ </ ButtonContainer >
68+
69+ </ Row >
70+
71+ < Row >
72+ < ButtonContainer >
73+ < Button color = { COLOR . TRANSPARENT } contentColor = { COLOR . NW_TEAL } hoverContentColor = { COLOR . TEAL } outlined >
74+ { BUTTON_TEXT }
75+ </ Button >
76+ </ ButtonContainer >
77+
78+ < ButtonContainer >
79+ < Button color = { COLOR . TRANSPARENT } contentColor = { COLOR . NW_TEAL } hoverContentColor = { COLOR . TEAL } hoverBackgroundColor = { BUTTON_COLOR . HOVER_PRIMARY } outlined >
80+ { BUTTON_TEXT }
81+ </ Button >
82+ </ ButtonContainer >
83+
84+ < ButtonContainer >
85+ < Button disabled outlined >
86+ { BUTTON_TEXT }
87+ </ Button >
88+ </ ButtonContainer >
89+ </ Row >
90+
91+ < Row >
92+ < ButtonContainer >
93+ < Button color = { BUTTON_COLOR . DESTRUCTIVE } contentColor = { COLOR . WHITE } >
94+ { BUTTON_TEXT }
95+ </ Button >
96+ </ ButtonContainer >
97+
98+ < ButtonContainer >
99+ < Button color = { BUTTON_COLOR . DESTRUCTIVE } contentColor = { COLOR . WHITE } hoverBackgroundColor = { COLOR . BRIGHT_RED } >
100+ { BUTTON_TEXT }
101+ </ Button >
102+ </ ButtonContainer >
103+
104+ < ButtonContainer >
105+ < Button disabled >
106+ { BUTTON_TEXT }
107+ </ Button >
108+ </ ButtonContainer >
109+ </ Row >
110+
111+ </ Section >
112+
113+ < Section >
114+ < Row >
115+ < ButtonContainer >
116+ < Button color = { BUTTON_COLOR . PRIMARY } contentColor = { COLOR . MIDNIGHT_PURPLE } rounded >
117+ { BUTTON_TEXT }
118+ </ Button >
119+ </ ButtonContainer >
120+
121+ < ButtonContainer >
122+ < Button color = { BUTTON_COLOR . PRIMARY } contentColor = { COLOR . MIDNIGHT_PURPLE } hoverContentColor = { COLOR . TEAL } hoverBackgroundColor = { BUTTON_COLOR . HOVER_PRIMARY } rounded >
123+ { BUTTON_TEXT }
124+ </ Button >
125+ </ ButtonContainer >
126+
127+ < ButtonContainer >
128+ < Button disabled rounded >
129+ { BUTTON_TEXT }
130+ </ Button >
131+ </ ButtonContainer >
132+
133+ </ Row >
134+
135+ < Row >
136+ < ButtonContainer >
137+ < Button color = { BUTTON_COLOR . SECONDARY } contentColor = { COLOR . MIDNIGHT_PURPLE } rounded >
138+ { BUTTON_TEXT }
139+ </ Button >
140+ </ ButtonContainer >
141+
142+ < ButtonContainer >
143+ < Button color = { BUTTON_COLOR . SECONDARY } contentColor = { COLOR . MIDNIGHT_PURPLE } hoverBackgroundColor = { COLOR . LIGHT_GRAY } rounded >
144+ { BUTTON_TEXT }
145+ </ Button >
146+ </ ButtonContainer >
147+
148+ < ButtonContainer >
149+ < Button disabled rounded >
150+ { BUTTON_TEXT }
151+ </ Button >
152+ </ ButtonContainer >
153+
154+ </ Row >
155+
156+ < Row >
157+ < ButtonContainer >
158+ < Button color = { COLOR . TRANSPARENT } contentColor = { COLOR . NW_TEAL } hoverContentColor = { COLOR . TEAL } outlined rounded >
159+ { BUTTON_TEXT }
160+ </ Button >
161+ </ ButtonContainer >
162+
163+ < ButtonContainer >
164+ < Button color = { COLOR . TRANSPARENT } contentColor = { COLOR . NW_TEAL } hoverContentColor = { COLOR . TEAL } hoverBackgroundColor = { BUTTON_COLOR . HOVER_PRIMARY } outlined rounded >
165+ { BUTTON_TEXT }
166+ </ Button >
167+ </ ButtonContainer >
168+
169+ < ButtonContainer >
170+ < Button disabled outlined rounded >
171+ { BUTTON_TEXT }
172+ </ Button >
173+ </ ButtonContainer >
174+ </ Row >
175+
176+ < Row >
177+ < ButtonContainer >
178+ < Button color = { BUTTON_COLOR . DESTRUCTIVE } contentColor = { COLOR . WHITE } rounded >
179+ { BUTTON_TEXT }
180+ </ Button >
181+ </ ButtonContainer >
182+
183+ < ButtonContainer >
184+ < Button color = { BUTTON_COLOR . DESTRUCTIVE } contentColor = { COLOR . WHITE } hoverBackgroundColor = { COLOR . BRIGHT_RED } rounded >
185+ { BUTTON_TEXT }
186+ </ Button >
187+ </ ButtonContainer >
188+
189+ < ButtonContainer >
190+ < Button disabled rounded >
191+ { BUTTON_TEXT }
192+ </ Button >
193+ </ ButtonContainer >
194+ </ Row >
195+ </ Section >
196+ </ Container >
197+ )
198+ }
0 commit comments