Skip to content

Commit 4ce5e7d

Browse files
committed
Change app company name.
1 parent b7a3e99 commit 4ce5e7d

5 files changed

Lines changed: 21 additions & 21 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"author": "Obrymec - https://obrymec.vercel.app",
55
"name": "@cacybernetic/landing-page",
66
"license": "CC0-1.0",
7-
"version": "0.0.8",
7+
"version": "0.0.9",
88
"type": "module",
99
"private": true,
1010
"bugs": {

src/common/components/header.tsx

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* @author Obrymec - https://obrymec.vercel.app
55
* @supported DESKTOP, MOBILE
66
* @created 2025-07-22
7-
* @updated 2025-08-18
7+
* @updated 2025-08-23
88
* @file header.tsx
9-
* @version 0.0.5
9+
* @version 0.0.6
1010
*/
1111

1212
// React dependencies.
@@ -56,7 +56,7 @@ import {
5656
import {
5757
POPPINS_SEMI_BOLD,
5858
SCROLL_ORIGIN_ID,
59-
BREAKPOINT_316,
59+
BREAKPOINT_416,
6060
SF_SEMI_BOLD,
6161
SF_MEDIUM
6262
} from "@/common/constants/variables.ts";
@@ -139,7 +139,7 @@ export default function Header () {
139139
>
140140
{/** Vector icon */}
141141
{icon != null && <Icon
142-
display = {{base: "inline-block", sm: "inline-block", md: "none"}}
142+
display = {{base: "inline-block", lg: "none"}}
143143
marginRight = {2}
144144
height = {6}
145145
width = {6}
@@ -324,7 +324,7 @@ export default function Header () {
324324
url = {appLogo}
325325
/>
326326
{/** Company name */}
327-
{windowWidth > BREAKPOINT_316 && <Text
327+
{windowWidth > BREAKPOINT_416 && <Text
328328
fontFamily = {POPPINS_SEMI_BOLD}
329329
whiteSpace = "nowrap"
330330
lineHeight = {0}
@@ -333,16 +333,13 @@ export default function Header () {
333333
</Flex>
334334
{/** Centered part */}
335335
<Flex
336-
display = {{base: "none", sm: "none", md: "inline-flex"}}
337336
columnGap = {{base: 2, sm: 2, md: 4, lg: 6, xl: 7}}
337+
display = {{base: "none", lg: "inline-flex"}}
338338
transition = "all .2s"
339339
alignItems = "center"
340340
>{buildOptions}</Flex>
341341
{/** Right part */}
342-
<Flex
343-
columnGap = {{base: 3, sm: 4}}
344-
alignItems = "center"
345-
>
342+
<Flex columnGap = {{base: 3, sm: 4}} alignItems = "center">
346343
{/** Language selection */}
347344
<ReactFlagsSelect
348345
onSelect = {(code: string): void => switchLanguage(code)}
@@ -357,9 +354,9 @@ export default function Header () {
357354
/>
358355
{/** Emburger menu */}
359356
<Icon
360-
display = {{base: "inline-block", sm: "inline-block", md: "none"}}
361357
onClick = {(): void => displayMenu(!isMenuDisplayed)}
362358
as = {isMenuDisplayed ? IoCloseOutline : RiMenu5Fill}
359+
display = {{base: "inline-block", lg: "none"}}
363360
_hover = {{color: "primary.600"}}
364361
transition = "all .2s"
365362
color = "neutral.9"
@@ -380,7 +377,8 @@ export default function Header () {
380377
display = {{
381378
base: (isMenuDisplayed ? "flex" : "none"),
382379
sm: (isMenuDisplayed ? "flex" : "none"),
383-
md: "none"
380+
md: (isMenuDisplayed ? "flex" : "none"),
381+
lg: "none"
384382
}}
385383
>{buildOptions}</Flex>
386384
</Flex>;

src/common/constants/variables.ts

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* @author Obrymec - https://obrymec.vercel.app
55
* @supported DESKTOP, MOBILE
66
* @created 2025-07-21
7-
* @updated 2025-08-20
7+
* @updated 2025-08-23
88
* @file variables.ts
9-
* @version 0.0.4
9+
* @version 0.0.5
1010
*/
1111

1212
// Contact information.
@@ -16,6 +16,7 @@ const COMPANY_PHONE: string = "(+229) 019 798 5109";
1616
// Responsive breakpoints.
1717
const BREAKPOINT_1592: number = 1592;
1818
const BREAKPOINT_316: number = 316;
19+
const BREAKPOINT_416: number = 416;
1920

2021
// Section ids.
2122
const SCROLL_BOTTOM_ID: string = "div#scroll-helper-bottom";
@@ -39,10 +40,6 @@ const SF_BOLD: string = "SFBold";
3940
* @exports *
4041
*/
4142
export {
42-
// Responsive breakpoints.
43-
BREAKPOINT_1592,
44-
BREAKPOINT_316,
45-
4643
// Contact information.
4744
COMPANY_GMAIL,
4845
COMPANY_PHONE,
@@ -52,6 +49,11 @@ export {
5249
SCROLL_ORIGIN_ID,
5350
SCROLL_TOP_ID,
5451

52+
// Responsive breakpoints.
53+
BREAKPOINT_1592,
54+
BREAKPOINT_416,
55+
BREAKPOINT_316,
56+
5557
// Font families.
5658
POPPINS_SEMI_BOLD,
5759
POPPINS_REGULAR,

src/common/i18n/english.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@
109109
"companyDiversityTitle": "Heterogeneity",
110110
"companyEfficienceTitle": "Performance",
111111
"companyCreativityTitle": "Originality",
112+
"companyName": "Console Art Cybernetic",
112113
"requestFailedTitle": "Request failed",
113114
"websiteEditorTitle": "Website editor",
114115
"itSolutions": "Software Development",
@@ -127,7 +128,6 @@
127128
"legalNotices": "Legal Notices",
128129
"networkError": "Network error",
129130
"contactUsTitle": "Contact us",
130-
"companyName": "CA Cybernetic",
131131
"gameDev": "Interactive Media",
132132
"ai": "Artificial Inteligence",
133133
"moreDetails": "More details",

src/common/i18n/french.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
"requestFailedTitle": "Requête échouée",
115115
"websiteEditorTitle": "Éditeur du site",
116116
"itSolutions": "Développement Logiciel",
117+
"companyName": "Console Art Cybernetic",
117118
"softDevTrainingTitle": "Enseignement",
118119
"networkError": "Erreur de connexion",
119120
"companyExcellenceTitle": "Maîtrise",
@@ -131,7 +132,6 @@
131132
"inputError": "Erreur de saisie",
132133
"softDevTitle": "Programmation",
133134
"gameDev": "Médias Interactifs",
134-
"companyName": "CA Cybernetic",
135135
"getInTouch": "Nous contacter",
136136
"hostInfoTitle": "Hébergeur",
137137
"ourStory": "Notre Histoire",

0 commit comments

Comments
 (0)