Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 2887c70

Browse files
authored
chore: rename app for clarity (#731)
1 parent 911a04d commit 2887c70

File tree

20 files changed

+22
-24
lines changed

20 files changed

+22
-24
lines changed

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
[contributing]: CONTRIBUTING.md
22
[code_of_conduct]: CODE_OF_CONDUCT.md
33
[license]: LICENSE.txt
4-
[ci-style-status]: https://github.com/cesium/seium.org/actions/workflows/style.yml/badge.svg
5-
[ci-style-workflow]: https://github.com/cesium/seium.org/actions/workflows/style.yml
6-
[netlify-deploys]: https://app.netlify.com/sites/seium/deploys
7-
[netlify-status]: https://api.netlify.com/api/v1/badges/ed584f7f-e3cd-47a3-b00e-c07faa722ce1/deploy-status
4+
[ci-style-status]: https://github.com/cesium/lazuli/actions/workflows/style.yml/badge.svg
5+
[ci-style-workflow]: https://github.com/cesium/lazuli/actions/workflows/style.yml
86
[figma-design-2022]: https://www.figma.com/file/sPqEvYKlOqL8L7CC2AzxkN/SEI
97
[figma-badge-2022]: https://img.shields.io/badge/-figma22-s?style=flat&logo=figma&color=black
108
[figma-design-2021]: https://www.figma.com/file/1phER5eukGFC5p9tFGnfk7/SEI

components/Layout/Layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import ActiveLink from "./components/ActiveLink";
1414
import Banner from "./components/Banner";
1515
import spotlights from "pages/staff/spotlights";
1616

17-
// FIXME: Normalize user type between moonstone and safira
17+
// FIXME: Normalize user type between lazuli and safira
1818
const basePahts = {
1919
[ROLES.ATTENDEE]: "attendee",
2020
[ROLES.SPONSOR]: "sponsor",

components/Social/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default function Social() {
3030
</a>
3131
<a
3232
className="w-5 transition-colors duration-75 ease-in hover:text-quinary"
33-
href="https://github.com/cesium/seium.org"
33+
href="https://github.com/cesium/lazuli"
3434
target="_blank"
3535
rel="noreferrer"
3636
>

layout/ForgotPassword/ForgotPassword.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { motion as Motion } from "framer-motion";
33
import Card from "@components/Card";
44
import Return from "@components/Return";
55

6-
import Title from "@layout/moonstone/authentication/Title";
6+
import Title from "@layout/lazuli/authentication/Title";
77

88
import { ForgotPasswordForm } from "./components";
99

layout/ForgotPassword/components/ForgotPasswordForm/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import ImageButton from "@components/ImageButton";
55

66
import Form from "@components/Form";
77
import Input from "@components/Input";
8-
import Text from "@layout/moonstone/authentication/Text";
8+
import Text from "@layout/lazuli/authentication/Text";
99

1010
export default function ForgotPasswordForm() {
1111
const [success, updateSuccess] = useState(null);

layout/Login/Login.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import { Router, useRouter } from "next/router";
1010

1111
import Return from "@components/Return";
1212

13-
import Title from "@layout/moonstone/authentication/Title";
14-
import Text from "@layout/moonstone/authentication/Text";
13+
import Title from "@layout/lazuli/authentication/Title";
14+
import Text from "@layout/lazuli/authentication/Text";
1515
import { LoginForm } from "./components";
1616

1717
function Login() {
@@ -33,7 +33,7 @@ function Login() {
3333
className="absolute -left-[380px] bottom-0 hidden w-[750px] xl:block"
3434
src="/images/void.svg"
3535
/>
36-
<div className="mt-10 flex flex-col items-center justify-center sm:mt-40 z-8">
36+
<div className="z-8 mt-10 flex flex-col items-center justify-center sm:mt-40">
3737
<Title text="Log in" />
3838
<LoginForm />
3939
<Text

layout/Login/components/LoginForm/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useRef } from "react";
33
import { useAuth } from "@context/Auth";
44

55
import Button from "@components/Button";
6-
import Text from "@layout/moonstone/authentication/Text";
6+
import Text from "@layout/lazuli/authentication/Text";
77

88
import Form from "@components/Form";
99
import Input from "@components/Input";

layout/ResetPassword/ResetPassword.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { motion as Motion } from "framer-motion";
33
import Card from "@components/Card";
44
import Return from "@components/Return";
55

6-
import Title from "@layout/moonstone/authentication/Title";
6+
import Title from "@layout/lazuli/authentication/Title";
77
import { ResetPasswordForm } from "./components";
88

99
export async function getServerSideProps({ query }) {

layout/SignUp/SignUp.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import { motion as Motion } from "framer-motion";
55
import Card from "@components/Card";
66
import Return from "@components/Return";
77
import { SignUpForm } from "./components";
8-
import Title from "@layout/moonstone/authentication/Title";
9-
import Text from "@layout/moonstone/authentication/Text";
8+
import Title from "@layout/lazuli/authentication/Title";
9+
import Text from "@layout/lazuli/authentication/Text";
1010

1111
import { getCourses } from "@lib/api";
1212

layout/Sponsor/Dashboard/Dashboard.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { withAuth } from "@context/Auth";
44
import Heading from "@components/Heading";
55
import Layout from "@components/Layout";
66

7-
import SponsorPrizeButton from "@layout/moonstone/sponsor/dashboard/SponsorPrizeButton";
8-
import SponsorBadgeButton from "@layout/moonstone/sponsor/dashboard/SponsorBadgeButton";
9-
import ParticipantSelector from "@layout/moonstone/sponsor/dashboard/ParticipantSelector";
7+
import SponsorPrizeButton from "@layout/lazuli/sponsor/dashboard/SponsorPrizeButton";
8+
import SponsorBadgeButton from "@layout/lazuli/sponsor/dashboard/SponsorBadgeButton";
9+
import ParticipantSelector from "@layout/lazuli/sponsor/dashboard/ParticipantSelector";
1010

1111
const SponsorDashboard: React.FC = () => {
1212
const participants: string[] = ["Nome 1", "Nome 2", "Nome 3", "Nome 4"];

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "moonstone",
2+
"name": "lazuli",
33
"version": "2.1.0",
44
"private": true,
55
"scripts": {

pages/register/[uuid].js

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import Input from "@components/Input";
1414
import Select from "@components/Select";
1515
import PasswordInput from "@components/PasswordInput";
1616

17-
import Title from "@layout/moonstone/authentication/Title";
18-
import Text from "@layout/moonstone/authentication/Text";
17+
import Title from "@layout/lazuli/authentication/Title";
18+
import Text from "@layout/lazuli/authentication/Text";
1919

2020
function Register() {
2121
const { sign_up, errors, isLoading } = useAuth();

public/humans.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ d.````` +ys````.h-` -h: .h-```````..:y` /h. `:y..../yy-........`.h
3939
This website was made with <3 by CeSIUM.
4040

4141
You can find the source code at
42-
https://github.com/cesium/seium.org
42+
https://github.com/cesium/lazuli
4343

0 commit comments

Comments
 (0)