Skip to content

Commit

Permalink
chore(time): rename time service 'time' to 'kgu-plus' (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
SWARVY committed Aug 14, 2024
1 parent 854d98b commit 18c4209
Show file tree
Hide file tree
Showing 64 changed files with 8 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion apps/time/package.json → apps/kgu-plus/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@clab/time",
"name": "@clab-platforms/kgu-plus",
"private": true,
"scripts": {
"dev": "next dev --port 6004",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import './globals.css';
const inter = Noto_Sans_KR({ subsets: ['latin'] });

export const metadata: Metadata = {
title: '경기타임',
title: '경기플러스',
description: '경기대학교에 계신 모든 순간을 도와드릴게요.',
icons: {
icon: '/favicon.ico',
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './common';
export * from './modal-key';
export * from './utility-type';
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Nav = () => {
height={200}
className="size-8"
/>
<h1 className="text-xl font-semibold">경기타임</h1>
<h1 className="text-xl font-semibold">경기플러스</h1>
</div>
<ul className="hidden w-3/5 items-center justify-center gap-4 text-sm sm:flex">
{links.map((link) => link)}
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import { memo } from 'react';

import { TimeTableFilter } from '@/widgets/time-table';
import TimeTableUtilButtons from '@/widgets/time-table/ui/TimeTableUtilButtons';

function TimeTableHeader() {
return (
<div className="flex">
<div className="flex w-full justify-between">
<div className="w-10" />
<TimeTableFilter />
<TimeTableUtilButtons />
</div>
);
}
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 18c4209

Please sign in to comment.