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

Commit 7961551

Browse files
committed
Removed all references to eventlooker and replaced them with TailorCal
1 parent 725a6ac commit 7961551

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# EventLooker
1+
# TailorCal
22
[![Docker Build For Planning CenterCal Frontend](https://github.com/Stephen10121/planningcentercal/actions/workflows/main.yml/badge.svg)](https://github.com/Stephen10121/planningcentercal/actions/workflows/main.yml)
33

4-
This is the website repo for my EventLooker project. This website lets you login with your Planning Center account. The website will fetch your events and create an events calendar for you. You can create multiple custom calendars and each calendar instance can sort by approval status, time, organizer, etc.
4+
This is the website repo for my TailorCal project. This website lets you login with your Planning Center account. The website will fetch your events and create an events calendar for you. You can create multiple custom calendars and each calendar instance can sort by approval status, time, organizer, etc.
55

66
## TODO
77

src/app.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1" />
6-
<meta name="description" content="EventLooker connects to your planning center account and enables you to create custom calendars and share them across multiple devices." />
6+
<meta name="description" content="TailorCal connects to your planning center account and enables you to create custom calendars and share them across multiple devices." />
77
<link rel="stylesheet" href="%sveltekit.assets%/style.css">
88
<link rel="preconnect" href="https://fonts.googleapis.com">
99
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

src/routes/+layout.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@
5050
{#if !data.user}
5151
<a href="/">
5252
<h2 class="scroll-m-20 pb-2 text-3xl font-bold tracking-tight transition-colors first:mt-0">
53-
EventLooker
53+
TailorCal
5454
</h2>
5555
</a>
5656
{:else}
5757
<a href="/dashboard">
5858
<h2 class="scroll-m-20 pb-2 text-3xl font-bold tracking-tight transition-colors first:mt-0">
59-
EventLooker
59+
TailorCal
6060
</h2>
6161
</a>
6262
{/if}

src/routes/+page.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
</script>
66

77
<svelte:head>
8-
<title>EventLooker | Home Page</title>
8+
<title>TailorCal | Home Page</title>
99
</svelte:head>
1010

1111
<header>
12-
<h2 class="poppins-semibold">EventLooker</h2>
12+
<h2 class="poppins-semibold">TailorCal</h2>
1313
<form method="POST">
1414
<button type="submit" class="body18 gettingStartedButton">Get started</button>
1515
</form>
@@ -62,12 +62,12 @@
6262

6363
<footer>
6464
<div class="bar"></div>
65-
<h3 class="poppins-semibold">EventLooker</h3>
65+
<h3 class="poppins-semibold">TailorCal</h3>
6666
<div class="links">
6767
<a href="/" class="bodybold18">Terms of use</a>
6868
<a href="/" class="bodybold18">Cookies policy</a>
6969
<a href="/" class="bodybold18">Privacy policy</a>
70-
<p class="bodybold18"EventLooker 2025</p>
70+
<p class="bodybold18"TailorCal 2025</p>
7171
</div>
7272
</footer>
7373

src/routes/dashboard/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</script>
2929

3030
<svelte:head>
31-
<title>Dashboard | EventLooker</title>
31+
<title>Dashboard | TailorCal</title>
3232
</svelte:head>
3333

3434
{#if data.user}

src/routes/mycalendars/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
</script>
6666

6767
<svelte:head>
68-
<title>Calendars | EventLooker</title>
68+
<title>Calendars | TailorCal</title>
6969
</svelte:head>
7070

7171
{#if data.user}

static/manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "EventLooker",
2+
"name": "TailorCal",
33
"theme_color": "#2563eb",
44
"background_color": "#ffffff",
5-
"short_name": "EventLooker",
6-
"id": "eventlookersg",
7-
"description": "EventLooker connects to your planning center account and enables you to create custom calendars and share them across multiple devices.",
5+
"short_name": "TailorCal",
6+
"id": "tailorcalsg",
7+
"description": "TailorCal connects to your planning center account and enables you to create custom calendars and share them across multiple devices.",
88
"start_url": "/"
99
}

0 commit comments

Comments
 (0)