Skip to content

Commit c6e9b1a

Browse files
committed
Subtle improvements
1 parent c4e711c commit c6e9b1a

File tree

7 files changed

+15
-10
lines changed

7 files changed

+15
-10
lines changed

src/lib/components/form/ContactForm.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
class="my-2 bg-primary-500 py-2 px-4 cursor-pointer"
113113
on:click={() => {
114114
goto("/adopted-projects");
115-
}}>Go to Adopted Projects</button
115+
}}>Go to adopted projects</button
116116
>
117117
</div>
118118
{:else}

src/lib/components/landing/Mission.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<p
4545
class="text-5xl sm:text-7xl font-extrabold text-accent dark:text-accent mb-1 leading-none"
4646
>
47-
35,000+
47+
48,000+
4848
</p>
4949
<p
5050
class="text-base sm:text-lg font-semibold text-accent dark:text-white"

src/lib/components/landing/Partners.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
4343
<div class="text-center mb-12">
4444
<h3
45-
class="text-3xl sm:text-4xl font-extrabold tracking-wider text-primary-900 dark:text-white mb-4"
45+
class="text-3xl sm:text-4xl font-extrabold text-primary-900 dark:text-white mb-4"
4646
>
4747
Backed by our
4848
<span

src/lib/components/layout/Footer.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
{ name: "Adopted Projects", href: "/adopted-projects" },
1616
{ name: "Offers", href: "/our-offer" },
1717
{ name: "Our Team", href: "/our-team" },
18-
{ name: "Chat with us!", href: "/contact" },
18+
{ name: "Chat With Us!", href: "/contact" },
1919
];
2020
2121
let socials: SocialItem[] = [

src/lib/components/layout/Header.svelte

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{ name: "Adopted Projects", href: "/adopted-projects" },
1313
{ name: "Offers", href: "/our-offer" },
1414
{ name: "Our Team", href: "/our-team" },
15-
{ name: "Chat with us!", href: "/contact" },
15+
{ name: "Chat With Us!", href: "/contact" },
1616
];
1717
1818
let mobileMenuOpen = $state(false);
@@ -34,15 +34,14 @@
3434
<!-- Logo/Title -->
3535
<a
3636
href="/"
37-
class="flex items-center space-x-2 text-2xl font-bold tracking-wider"
37+
class="flex items-center space-x-2 text-2xl font-bold"
3838
>
3939
<img
4040
src="/resources/ocp_icon.png"
4141
alt="Open Collaboration Logo"
4242
class="h-10 w-auto"
4343
/>
44-
<span class="text-sm lg:text-2xl text-primary dark:text-accent">Open Collaboration</span
45-
>
44+
<span class="text-sm lg:text-xl text-primary dark:text-accent">Open Collaboration</span>
4645
</a>
4746

4847
<!-- Desktop Navigation & Toggle -->

src/lib/components/our-mission/MissionHelp.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
<section class="border-t border-gray-200 bg-gray-200 py-16 dark:border-gray-700 dark:bg-gray-800 sm:py-24">
2222
<div class="mx-auto max-w-6xl px-4 sm:px-6 lg:px-8">
2323
<h2 class="mb-8 text-center text-3xl font-extrabold text-primary-900 dark:text-white sm:mb-12 sm:text-4xl">
24-
How We help
25-
<span class="text-primary dark:text-accent"> Adopted Projects </span>
24+
How we help
25+
<span class="text-primary dark:text-accent"> adopted projects </span>
2626
</h2>
2727

2828
<div class="grid gap-10 md:grid-cols-3">

src/style.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
/* ------------------- Any global custom styles will go here */
22
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
3+
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');
4+
35
body {
46
font-family: "Poppins", sans-serif;
57
}
68

9+
.lucky {
10+
font-family: "Luckiest Guy", sans-serif;
11+
}
12+
713
/* ------------ Hero Section styles */
814
.hero-background {
915
background-image: url("/resources/upbg3.png");

0 commit comments

Comments
 (0)