@@ -67,7 +62,9 @@ export default function Bookings({ bookings }) {
"px-6 py-4 max-w-20 w-full" + (booking.rejected ? " line-through" : "")
}>
{booking.title}
-
You and {booking.attendees[0].name}
+
+ You and {booking.attendees[0].name}
+
{/*
diff --git a/pages/event-types/[type].tsx b/pages/event-types/[type].tsx
index 8a2f1823..78e8e12d 100644
--- a/pages/event-types/[type].tsx
+++ b/pages/event-types/[type].tsx
@@ -1135,7 +1135,7 @@ export const getServerSideProps: GetServerSideProps = async ({ req, query
enabled: credentials.find((integration) => integration.type === "google_calendar") != null,
type: "google_calendar",
title: "Google Calendar",
- imageSrc: "integrations/google-calendar.png",
+ imageSrc: "integrations/google-calendar.svg",
description: "For personal and business accounts",
},
{
@@ -1143,7 +1143,7 @@ export const getServerSideProps: GetServerSideProps = async ({ req, query
type: "office365_calendar",
enabled: credentials.find((integration) => integration.type === "office365_calendar") != null,
title: "Office 365 / Outlook.com Calendar",
- imageSrc: "integrations/office-365.png",
+ imageSrc: "integrations/outlook.svg",
description: "For personal and business accounts",
},
];
diff --git a/pages/event-types/index.tsx b/pages/event-types/index.tsx
index 36eb5c27..d3ded115 100644
--- a/pages/event-types/index.tsx
+++ b/pages/event-types/index.tsx
@@ -65,7 +65,7 @@ export default function Availability({ user, types }) {
}
if (loading) {
- return ;
+ return ;
}
return (
@@ -74,18 +74,17 @@ export default function Availability({ user, types }) {
Event Types | Calendso
-
-
-
- Create events to share for people to book on your calendar.
-
-
-
+
+
+ New event type
+
+ }>
{types.map((type) => (
diff --git a/pages/index.tsx b/pages/index.tsx
index 264e4d8e..ec876b44 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -13,7 +13,7 @@ function classNames(...classes) {
export default function Home(props) {
const [session, loading] = useSession();
if (loading) {
- return ;
+ return ;
}
function convertMinsToHrsMins(mins) {
@@ -227,19 +227,19 @@ export default function Home(props) {
{integration.type == "google_calendar" && (
)}
{integration.type == "office365_calendar" && (
)}
{integration.type == "zoom_video" && (
-
+
)}
{integration.type == "office365_calendar" && (
diff --git a/pages/integrations/[integration].tsx b/pages/integrations/[integration].tsx
index ba89ebbb..52f14144 100644
--- a/pages/integrations/[integration].tsx
+++ b/pages/integrations/[integration].tsx
@@ -12,7 +12,7 @@ export default function integration(props) {
const [showAPIKey, setShowAPIKey] = useState(false);
if (loading) {
- return ;
+ return
;
}
function toggleShowAPIKey() {
diff --git a/pages/integrations/index.tsx b/pages/integrations/index.tsx
index 891fc4ef..0740271a 100644
--- a/pages/integrations/index.tsx
+++ b/pages/integrations/index.tsx
@@ -71,9 +71,9 @@ export default function Home({ integrations }) {
function getCalendarIntegrationImage(integrationType: string) {
switch (integrationType) {
case "google_calendar":
- return "integrations/google-calendar.png";
+ return "integrations/google-calendar.svg";
case "office365_calendar":
- return "integrations/office-365.png";
+ return "integrations/outlook.svg";
default:
return "";
}
@@ -86,7 +86,7 @@ export default function Home({ integrations }) {
useEffect(loadCalendars, [integrations]);
if (loading) {
- return ;
+ return
;
}
return (
@@ -96,10 +96,10 @@ export default function Home({ integrations }) {
-
-
- Connect your favourite apps.
-
+
|