Skip to content

Commit

Permalink
chore: rename app for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
joaodiaslobo committed Nov 15, 2024
1 parent 911a04d commit dcc25d1
Show file tree
Hide file tree
Showing 20 changed files with 22 additions and 24 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
[contributing]: CONTRIBUTING.md
[code_of_conduct]: CODE_OF_CONDUCT.md
[license]: LICENSE.txt
[ci-style-status]: https://github.com/cesium/seium.org/actions/workflows/style.yml/badge.svg
[ci-style-workflow]: https://github.com/cesium/seium.org/actions/workflows/style.yml
[netlify-deploys]: https://app.netlify.com/sites/seium/deploys
[netlify-status]: https://api.netlify.com/api/v1/badges/ed584f7f-e3cd-47a3-b00e-c07faa722ce1/deploy-status
[ci-style-status]: https://github.com/cesium/lazuli/actions/workflows/style.yml/badge.svg
[ci-style-workflow]: https://github.com/cesium/lazuli/actions/workflows/style.yml
[figma-design-2022]: https://www.figma.com/file/sPqEvYKlOqL8L7CC2AzxkN/SEI
[figma-badge-2022]: https://img.shields.io/badge/-figma22-s?style=flat&logo=figma&color=black
[figma-design-2021]: https://www.figma.com/file/1phER5eukGFC5p9tFGnfk7/SEI
Expand Down
2 changes: 1 addition & 1 deletion components/Layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import ActiveLink from "./components/ActiveLink";
import Banner from "./components/Banner";
import spotlights from "pages/staff/spotlights";

// FIXME: Normalize user type between moonstone and safira
// FIXME: Normalize user type between lazuli and safira
const basePahts = {
[ROLES.ATTENDEE]: "attendee",
[ROLES.SPONSOR]: "sponsor",
Expand Down
2 changes: 1 addition & 1 deletion components/Social/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function Social() {
</a>
<a
className="w-5 transition-colors duration-75 ease-in hover:text-quinary"
href="https://github.com/cesium/seium.org"
href="https://github.com/cesium/lazuli"
target="_blank"
rel="noreferrer"
>
Expand Down
2 changes: 1 addition & 1 deletion layout/ForgotPassword/ForgotPassword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { motion as Motion } from "framer-motion";
import Card from "@components/Card";
import Return from "@components/Return";

import Title from "@layout/moonstone/authentication/Title";
import Title from "@layout/lazuli/authentication/Title";

import { ForgotPasswordForm } from "./components";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import ImageButton from "@components/ImageButton";

import Form from "@components/Form";
import Input from "@components/Input";
import Text from "@layout/moonstone/authentication/Text";
import Text from "@layout/lazuli/authentication/Text";

export default function ForgotPasswordForm() {
const [success, updateSuccess] = useState(null);
Expand Down
6 changes: 3 additions & 3 deletions layout/Login/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { Router, useRouter } from "next/router";

import Return from "@components/Return";

import Title from "@layout/moonstone/authentication/Title";
import Text from "@layout/moonstone/authentication/Text";
import Title from "@layout/lazuli/authentication/Title";
import Text from "@layout/lazuli/authentication/Text";
import { LoginForm } from "./components";

function Login() {
Expand All @@ -33,7 +33,7 @@ function Login() {
className="absolute -left-[380px] bottom-0 hidden w-[750px] xl:block"
src="/images/void.svg"
/>
<div className="mt-10 flex flex-col items-center justify-center sm:mt-40 z-8">
<div className="z-8 mt-10 flex flex-col items-center justify-center sm:mt-40">
<Title text="Log in" />
<LoginForm />
<Text
Expand Down
2 changes: 1 addition & 1 deletion layout/Login/components/LoginForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useRef } from "react";
import { useAuth } from "@context/Auth";

import Button from "@components/Button";
import Text from "@layout/moonstone/authentication/Text";
import Text from "@layout/lazuli/authentication/Text";

import Form from "@components/Form";
import Input from "@components/Input";
Expand Down
2 changes: 1 addition & 1 deletion layout/ResetPassword/ResetPassword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { motion as Motion } from "framer-motion";
import Card from "@components/Card";
import Return from "@components/Return";

import Title from "@layout/moonstone/authentication/Title";
import Title from "@layout/lazuli/authentication/Title";
import { ResetPasswordForm } from "./components";

export async function getServerSideProps({ query }) {
Expand Down
4 changes: 2 additions & 2 deletions layout/SignUp/SignUp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { motion as Motion } from "framer-motion";
import Card from "@components/Card";
import Return from "@components/Return";
import { SignUpForm } from "./components";
import Title from "@layout/moonstone/authentication/Title";
import Text from "@layout/moonstone/authentication/Text";
import Title from "@layout/lazuli/authentication/Title";
import Text from "@layout/lazuli/authentication/Text";

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

Expand Down
6 changes: 3 additions & 3 deletions layout/Sponsor/Dashboard/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { withAuth } from "@context/Auth";
import Heading from "@components/Heading";
import Layout from "@components/Layout";

import SponsorPrizeButton from "@layout/moonstone/sponsor/dashboard/SponsorPrizeButton";
import SponsorBadgeButton from "@layout/moonstone/sponsor/dashboard/SponsorBadgeButton";
import ParticipantSelector from "@layout/moonstone/sponsor/dashboard/ParticipantSelector";
import SponsorPrizeButton from "@layout/lazuli/sponsor/dashboard/SponsorPrizeButton";
import SponsorBadgeButton from "@layout/lazuli/sponsor/dashboard/SponsorBadgeButton";
import ParticipantSelector from "@layout/lazuli/sponsor/dashboard/ParticipantSelector";

const SponsorDashboard: React.FC = () => {
const participants: string[] = ["Nome 1", "Nome 2", "Nome 3", "Nome 4"];
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "moonstone",
"name": "lazuli",
"version": "2.1.0",
"private": true,
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions pages/register/[uuid].js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import Input from "@components/Input";
import Select from "@components/Select";
import PasswordInput from "@components/PasswordInput";

import Title from "@layout/moonstone/authentication/Title";
import Text from "@layout/moonstone/authentication/Text";
import Title from "@layout/lazuli/authentication/Title";
import Text from "@layout/lazuli/authentication/Text";

function Register() {
const { sign_up, errors, isLoading } = useAuth();
Expand Down
2 changes: 1 addition & 1 deletion public/humans.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ d.````` +ys````.h-` -h: .h-```````..:y` /h. `:y..../yy-........`.h
This website was made with <3 by CeSIUM.

You can find the source code at
https://github.com/cesium/seium.org
https://github.com/cesium/lazuli

0 comments on commit dcc25d1

Please sign in to comment.