Initial CSE website content integration

This commit is contained in:
Neeldhara Misra 2026-06-01 16:31:25 +05:30
commit dfe66b9002
260 changed files with 83153 additions and 0 deletions

26
.gitignore vendored Normal file
View file

@ -0,0 +1,26 @@
# dependencies
node_modules/
# build output and framework caches
dist/
.astro/
.netlify/
.vercel/
# local environment and machine state
.env
.env.*
!.env.example
.DS_Store
# logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# local agent/browser artifacts
.codex/
.claude/
.playwright-mcp/

11
.mcp.json Normal file
View file

@ -0,0 +1,11 @@
{
"mcpServers": {
"shadcn": {
"command": "npx",
"args": [
"shadcn@latest",
"mcp"
]
}
}
}

18
LICENSE Normal file
View file

@ -0,0 +1,18 @@
Shadcnblocks.com License
Copyright (c) 2024 Shadcnblocks.com
Things you can do
- This License grants you, the purchaser, an ongoing, non-exclusive, worldwide license to make use of this template.
- Use the template to develop unlimited end products for unlimited Clients.
- An end product is a customized implementation of this template, usually a new website,
which requires an application of skill and effort to be created.
- You can modify this template and can combine it with other works and plugins to create your end product.
The resulting end product is subject to the terms of the license. You can do these things as
long as the end product you then create is one thats permitted by the license.
Things you can't do
- You can't re-distribute or re-sell this template as stock, in a tool or template.
- You can't re-distribute, re-sell or provision this template from a 'hosting' service, a "website builder" or a SAAS product.

38
README.md Normal file
View file

@ -0,0 +1,38 @@
# Lumen Astro Template
Lumen Astro Template is a premium template built by https://www.shadcnblocks.com
- [Demo](https://lumen-astro-template.vercel.app/)
- [Documentation](https://www.shadcnblocks.com/docs/templates/getting-started)
## Screenshot
![Lumen Astro Template screenshot](./public/images/og-image.jpg)
## Getting Started
```bash
# Install dependencies
npm install
# Run the development server
npm run dev
```
Open [http://localhost:4321](http://localhost:4321) with your browser to see the result.
## Tech Stack
- Astro 6.x
- Tailwind 4
- shadcn/ui
## Deploy
You can deploy this template to your preferred hosting platform that supports Astro applications.
We have tested this template with the following providers using static export.
- [Netlify](https://netlify.com)
- [Vercel](https://vercel.com)
- [Cloudflare Pages](https://pages.cloudflare.com)

37
astro.config.mjs Normal file
View file

@ -0,0 +1,37 @@
// @ts-check
import mdx from '@astrojs/mdx';
import react from '@astrojs/react';
import sitemap from '@astrojs/sitemap';
import tailwindcss from '@tailwindcss/vite';
import { defineConfig, fontProviders } from 'astro/config';
// https://astro.build/config
export default defineConfig({
site: 'https://cse.iitgn.ac.in',
integrations: [mdx(), sitemap(), react()],
fonts: [
{
provider: fontProviders.google(),
name: 'Imprima',
cssVariable: '--font-imprima',
weights: ['400'],
},
{
provider: fontProviders.google(),
name: 'Rubik',
cssVariable: '--font-rubik',
weights: ['400', '500', '600', '700'],
},
{
provider: fontProviders.google(),
name: 'EB Garamond',
cssVariable: '--font-eb-garamond',
weights: ['400', '500', '600', '700'],
},
],
vite: {
plugins: [tailwindcss()],
},
});

29
components.json Normal file
View file

@ -0,0 +1,29 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "",
"css": "src/styles/global.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"iconLibrary": "lucide",
"registries": {
"@shadcnblocks": {
"url": "https://shadcnblocks.com/r/{name}",
"headers": {
"Authorization": "Bearer ${SHADCNBLOCKS_API_KEY}"
}
}
}
}

View file

@ -0,0 +1,75 @@
# Publications Implementation Plan
Goal: build `/research/publications` from generated, normalized data that Astro
can import at build time, then add client-side filtering by text, person, area,
year, and venue.
## Data Shape
The ingestion script writes `src/data/publications/publications.json`:
```json
{
"generatedAt": "2026-06-01T00:00:00.000Z",
"items": [
{
"id": "semantic-scholar-paper-id",
"title": "Paper title",
"year": 2026,
"venue": "Conference or journal",
"type": "conference",
"authors": [{ "name": "Author", "facultyId": "faculty-id" }],
"facultyIds": ["faculty-id"],
"areaSlugs": ["ai", "systems"],
"abstract": "Optional abstract",
"keywords": ["optional"],
"links": {
"doi": "10.xxxx/yyyy",
"pdf": "https://...",
"semanticScholar": "https://...",
"dblp": "https://..."
},
"source": {
"provider": "semantic-scholar",
"externalId": "author-or-paper-id",
"updatedAt": "2026-06-01T00:00:00.000Z"
},
"searchText": "lowercased denormalized text for filtering"
}
]
}
```
## Source Registry
`src/data/publications/sources.json` holds one row per faculty member with:
- stable `facultyId`
- display `name`
- `aliases` for author matching
- `areaSlugs`
- optional `semanticScholarAuthorId`
- optional `dblpPid`
- optional profile URLs
The current registry is intentionally empty of external IDs because the repo did
not contain any local source URLs. Once IDs are filled, the script can pull data.
## Ingestion Script
`scripts/ingest-publications.mjs` currently supports Semantic Scholar author
pulls using built-in Node `fetch`, normalizes the papers, deduplicates by DOI or
title, and writes Astro-importable JSON.
Immediate next steps:
1. Add faculty source IDs: Semantic Scholar author IDs first, DBLP PIDs second.
2. Decide canonical research area slugs and map each faculty member to them.
3. Add manual override support for missing/high-priority publications.
4. Build `/research/publications` as a React island with filters:
- text search over title, authors, venue, abstract, keywords
- person filter
- research area filter
- year range
- venue/type filter
5. Add a CI/build check that fails if generated publication JSON is malformed.

123
docs/site-map-todo.md Normal file
View file

@ -0,0 +1,123 @@
# Site Map and Content Cadence To-Do
Cadence classes:
- `x0`: permanent fixtures, rarely change
- `xN`: change on a need-to basis
- `xF`: change frequently on a regular cadence
- `xI`: change infrequently on a regular cadence
## Current Summary
Most routes are still template placeholders. The exceptions are the homepage shell,
faculty directory, blog machinery, `/news`, `/updates/news`, and the research
landing page. Blog content is still Lumen/template material and should be treated
as placeholder content even though the route works.
## x0 Permanent Fixtures
| Route | Current state | To-do |
|---|---|---|
| `/about` | Placeholder | Write department overview and history. |
| `/about/vision` | Placeholder | Add CSE vision/mission copy. |
| `/about/facilities` | Placeholder | Add labs, classrooms, compute, and shared facilities. |
| `/about/visit` | Placeholder | Add campus directions and visitor guidance. |
| `/about/careers` | Placeholder | Add standing careers page; current ads can link out. |
| `/about/contact` | Placeholder | Add office contacts, map, and generic inquiry channels. |
| `/academics` | Placeholder | Build academics landing page. |
| `/academics/btech` | Placeholder | Add program structure, curriculum links, outcomes. |
| `/academics/mtech` | Placeholder | Add tracks, admissions, curriculum, assistantship notes. |
| `/academics/emasters` | Placeholder | Add executive program copy and canonical links. |
| `/academics/phd` | Placeholder | Add admissions, milestones, funding, expectations. |
| `/research` | Functional landing grid | Replace stock imagery/copy with canonical research areas and lab links. |
| `/research/ai` | Placeholder | Add area page with faculty, labs, projects, publications. |
| `/research/data-science` | Placeholder | Add area page with faculty, labs, projects, publications. |
| `/research/hci` | Placeholder | Add area page with faculty, labs, projects, publications. |
| `/research/security` | Placeholder | Add area page with faculty, labs, projects, publications. |
| `/research/systems` | Placeholder | Add area page with faculty, labs, projects, publications. |
| `/research/theory` | Placeholder | Add area page with faculty, labs, projects, publications. |
| `/research/labs` | Placeholder | Add research group/lab directory. |
| `/privacy-policy` | Template legal boilerplate | Replace or remove until approved text exists. |
| `/terms-and-conditions` | Template legal boilerplate | Replace or remove until approved text exists. |
| `/404` | Functional template | Rewrite copy for IITGN CSE. |
| `/rss.xml` | Functional, points at template blog | Recheck after blog migration. |
## xN Need-Based Updates
| Route | Current state | To-do |
|---|---|---|
| `/people/faculty` | Functional directory, sparse data | Add photos, homepages, areas, profile links, and verify future join dates. |
| `/people/postdocs` | Placeholder | Add current postdoc roster and archive policy. |
| `/people/staff` | Placeholder | Add staff directory and role ownership. |
| `/people/visitors` | Placeholder | Add visitor roster with dates and host. |
| `/academics/openings` | Placeholder | Add JRF/SRF/internship announcements and expiry workflow. |
| `/research/patents` | Placeholder | Add patents/IP list. |
| `/updates/outreach` | Placeholder | Add outreach items and decide whether it is updates-only or a full page. |
| `/events` | Placeholder; overlaps `/updates/events` | Decide canonical route and redirect/alias the other. |
| `/updates/events` | Placeholder; overlaps `/events` | Decide canonical route and content model. |
| `/people` | Meta-refresh hub | Replace with a real people hub or implement a proper Astro redirect. |
## xF Frequent Cadence
| Route | Current state | To-do |
|---|---|---|
| `/` | Functional shell; latest news/awards wired; hero still uses stock media | Keep recent items fed from data; replace stock hero imagery/copy. |
| `/news` | Content-backed listing from media checklist | Continue verifying and adding confirmed items; decide taxonomy with seminars/events. |
| `/updates/news` | Alias content-backed listing | Decide whether to keep as canonical or redirect to `/news`. |
| `/blog` | Functional but template content | Replace Lumen posts with CSE posts or hide route. |
| `/blog/[...slug]` | Functional but template post layout/copy | Retheme and replace related-post behavior after content migration. |
| `/updates/blog` | Placeholder; duplicates `/blog` | Redirect to `/blog` or make updates section canonical. |
| `/updates/seminars` | Placeholder | Add seminar calendar/archive feed. |
| `/research/publications` | Placeholder | Replace with generated publication dataset and filter UI. |
## xI Infrequent Regular Cadence
| Route | Current state | To-do |
|---|---|---|
| `/people/students` | Placeholder | Add student roster or cohort links; update once per term. |
| `/people/phd-students` | Placeholder | Add current PhD roster; update once per term. |
| `/people/alumni` | Placeholder | Add alumni roster/highlights; update once per term. |
| `/research/projects` | Placeholder | Add funded R&D projects; review once per term. |
| `/about/administration` | Placeholder | Add committees/roles; annual rotation update. |
| `/about/leadership` | Placeholder | Decide if separate from administration; update with leadership changes. |
| `/academics/courses` | Placeholder | Add course catalogue and term offerings. |
| `/academics/srip` | Placeholder | Add annual SRIP information and review cycle. |
| `/academics/vsrp` | Placeholder | Add VSRP information and term-cycle updates. |
| `/updates/deadlines` | Placeholder | Add admissions/program deadlines; review each cycle. |
## Faculty xF Source Inventory
The repo currently has no faculty external profile or publication-source URLs in
`src/data/faculty.ts`. The faculty directory can already render a homepage icon
when `homepage` is present, but every record is empty today.
| Faculty | Local xF/publication source status |
|---|---|
| Rajat Moona | Missing homepage/publication source |
| Anirban Dasgupta | Missing homepage/publication source |
| Bireswar Das | Missing homepage/publication source |
| Neeldhara Misra | Missing homepage/publication source |
| Nipun Batra | Missing homepage/publication source |
| Manoj D Gupta | Missing homepage/publication source |
| Mayank Singh | Missing homepage/publication source |
| Sameer G Kulkarni | Missing homepage/publication source |
| Balagopal Komarath | Missing homepage/publication source |
| Abhishek Bichhawat | Missing homepage/publication source |
| Yogesh Kumar Meena | Missing homepage/publication source |
| Shouvick Mondal | Missing homepage/publication source |
| Manisha Padala | Missing homepage/publication source |
| Shanmuganathan Raman | Missing homepage/publication source |
| Udit Bhatia | Missing homepage/publication source |
| Krishna Prasad Miyapuram | Missing homepage/publication source |
| Jyoti Krishnan | Missing homepage/publication source |
| Manu Awasthi | Missing homepage/publication source |
| Anup Kalbalia | Missing homepage/publication source |
| Nirmal Kumar Sancheti | Missing homepage/publication source |
| Samit Bhattacharya | Missing homepage/publication source |
| Venkatesh Raman | Missing homepage/publication source |
| Viraj Shah | Missing homepage/publication source |
| Madhavan Unnikrishnan Nair | Missing homepage/publication source |
| Yuvraj Patel | Missing homepage/publication source |
| Subir Verma | Missing homepage/publication source |
| Ambarish Ojha | Missing homepage/publication source |
| K. Gopinath | Missing homepage/publication source |

88
eslint.config.mjs Normal file
View file

@ -0,0 +1,88 @@
import tsParser from '@typescript-eslint/parser';
import astroParser from 'astro-eslint-parser';
import astroPlugin from 'eslint-plugin-astro';
import importsPlugin from 'eslint-plugin-import';
export default [
{
// Apply to all files
files: ['**/*'],
ignores: [
'node_modules/**/*',
'dist/**/*',
'**/src/components/ui/**',
'**/components/ui/**',
],
plugins: {
import: importsPlugin,
},
rules: {
'import/order': [
'error',
{
groups: [
['builtin', 'external'],
['internal', 'parent', 'sibling', 'index'],
],
pathGroups: [
{
pattern: 'react',
group: 'builtin',
position: 'before',
},
{
pattern: 'next/**',
group: 'builtin',
position: 'before',
},
{
pattern: '@/**',
group: 'internal',
position: 'after',
},
],
pathGroupsExcludedImportTypes: ['builtin'],
'newlines-between': 'always',
alphabetize: {
order: 'asc',
caseInsensitive: true,
},
},
],
},
},
{
// Apply specifically to Astro files
files: ['**/*.astro'],
plugins: {
astro: astroPlugin,
},
languageOptions: {
parser: astroParser,
parserOptions: {
parser: tsParser,
extraFileExtensions: ['.astro'],
sourceType: 'module',
},
globals: {
Astro: 'readonly',
Fragment: 'readonly',
},
},
rules: {
// Astro recommended rules
'astro/no-conflict-set-directives': 'error',
'astro/no-unused-define-vars-in-style': 'error',
},
},
{
// Apply to TypeScript files
files: ['**/*.ts', '**/*.tsx'],
languageOptions: {
parser: tsParser,
parserOptions: {
sourceType: 'module',
},
},
},
];

156
keystatic.config.ts Normal file
View file

@ -0,0 +1,156 @@
import { config, fields, collection, singleton } from '@keystatic/core';
export default config({
storage: {
kind: 'local',
},
singletons: {
homepage: singleton({
label: 'Homepage',
path: 'src/content/homepage',
schema: {
heroSubtitle: fields.text({
label: 'Hero Subtitle',
description: 'Text before the rotating research areas',
}),
bannerText: fields.text({
label: 'Banner Text',
description: 'Top banner announcement text',
}),
bannerLink: fields.text({
label: 'Banner Link',
description: 'URL for the banner CTA',
}),
},
}),
},
collections: {
announcements: collection({
label: 'Announcements',
slugField: 'title',
path: 'src/content/announcements/*',
format: { contentField: 'content' },
schema: {
title: fields.slug({ name: { label: 'Title' } }),
type: fields.select({
label: 'Type',
options: [
{ label: 'Deadline', value: 'deadline' },
{ label: 'Seminar', value: 'seminar' },
{ label: 'News', value: 'news' },
],
defaultValue: 'news',
}),
date: fields.date({ label: 'Date' }),
description: fields.text({
label: 'Short Description',
multiline: true,
}),
link: fields.text({ label: 'Link URL' }),
content: fields.markdoc({ label: 'Content' }),
},
}),
seminars: collection({
label: 'Seminars',
slugField: 'title',
path: 'src/content/seminars/*',
format: { contentField: 'content' },
schema: {
title: fields.slug({ name: { label: 'Title' } }),
speaker: fields.text({ label: 'Speaker' }),
date: fields.date({ label: 'Date' }),
time: fields.text({ label: 'Time' }),
venue: fields.text({ label: 'Venue' }),
status: fields.select({
label: 'Status',
options: [
{ label: 'Upcoming', value: 'upcoming' },
{ label: 'Past', value: 'past' },
],
defaultValue: 'upcoming',
}),
content: fields.markdoc({ label: 'Abstract / Details' }),
},
}),
news: collection({
label: 'News',
slugField: 'title',
path: 'src/content/news/*',
format: { contentField: 'content' },
schema: {
title: fields.slug({ name: { label: 'Title' } }),
date: fields.date({ label: 'Date' }),
category: fields.select({
label: 'Category',
options: [
{ label: 'Award', value: 'award' },
{ label: 'Recognition', value: 'recognition' },
{ label: 'Student Achievement', value: 'student' },
{ label: 'Grant', value: 'grant' },
{ label: 'General', value: 'general' },
],
defaultValue: 'general',
}),
description: fields.text({
label: 'Short Description',
multiline: true,
}),
content: fields.markdoc({ label: 'Content' }),
},
}),
blog: collection({
label: 'Blog Posts',
slugField: 'title',
path: 'src/content/blog-posts/*',
format: { contentField: 'content' },
schema: {
title: fields.slug({ name: { label: 'Title' } }),
date: fields.date({ label: 'Date' }),
author: fields.text({ label: 'Author' }),
description: fields.text({
label: 'Description',
multiline: true,
}),
coverImage: fields.image({
label: 'Cover Image',
directory: 'public/images/blog',
publicPath: '/images/blog',
}),
content: fields.markdoc({ label: 'Content' }),
},
}),
events: collection({
label: 'Events',
slugField: 'title',
path: 'src/content/events/*',
format: { contentField: 'content' },
schema: {
title: fields.slug({ name: { label: 'Title' } }),
date: fields.date({ label: 'Date' }),
endDate: fields.date({ label: 'End Date (optional)' }),
type: fields.select({
label: 'Type',
options: [
{ label: 'Workshop', value: 'workshop' },
{ label: 'Conference', value: 'conference' },
{ label: 'School', value: 'school' },
{ label: 'Outreach', value: 'outreach' },
{ label: 'Other', value: 'other' },
],
defaultValue: 'other',
}),
description: fields.text({
label: 'Description',
multiline: true,
}),
content: fields.markdoc({ label: 'Content' }),
},
}),
},
});

19217
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

72
package.json Normal file
View file

@ -0,0 +1,72 @@
{
"name": "lumen-astro-template",
"type": "module",
"version": "2.0.0",
"author": "Shadcnblocks.com",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"publications:ingest": "node scripts/ingest-publications.mjs",
"lint": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro}\""
},
"dependencies": {
"@astrojs/mdx": "^5.0.2",
"@astrojs/react": "^5.0.1",
"@astrojs/rss": "^4.0.17",
"@astrojs/sitemap": "^3.7.1",
"@hookform/resolvers": "^5.2.2",
"@keystatic/core": "^0.5.50",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"astro": "^6.0.6",
"astro-themes": "^0.2.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"lucide-react": "^0.544.0",
"motion": "^12.23.22",
"radix-ui": "^1.4.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.74.0",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.14",
"@types/react": "^19.1.17",
"@types/react-dom": "^19.1.11",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"astro-eslint-parser": "^1.2.2",
"eslint": "^9.36.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"shadcn": "^4.5.0",
"tailwindcss": "^4.1.14",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
public/favicon/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -0,0 +1,45 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="1000" height="1000"><style>
#light-icon {
display: inline;
}
#dark-icon {
display: none;
}
@media (prefers-color-scheme: dark) {
#light-icon {
display: none;
}
#dark-icon {
display: inline;
}
}
</style><g id="light-icon"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="1000" height="1000"><g><g transform="matrix(3.7037037037037037,0,0,3.7037037037037037,0,0)"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="270" height="270"><svg width="270" height="270" viewBox="0 0 270 270" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="270" height="270" fill="url(#paint0_linear_334_38628)"></rect>
<g clip-path="url(#clip0_334_38628)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M124.809 28.0559L135.606 137.508L103.701 32.2561C96.6868 34.3185 90.0906 37.132 83.7629 40.5055L135.606 137.507L65.8251 52.4615C60.2612 56.9955 55.1689 62.1504 50.5594 67.7272L135.605 137.508L38.6034 85.6016C35.2297 91.9293 32.4159 98.5991 30.354 105.54L135.606 137.508L26.1538 126.711C25.8097 130.289 25.6062 133.866 25.6062 137.508C25.6062 141.151 25.8097 144.728 26.1538 148.305L135.606 137.508L30.354 169.477C32.4164 176.415 35.2299 183.087 38.6034 189.415L135.605 137.508L50.5594 207.289C55.1689 212.853 60.2483 218.011 65.8251 222.555L135.606 137.509L83.7629 234.511C90.0906 237.885 96.6852 240.699 103.701 242.761L135.606 137.509L124.809 246.961C128.386 247.305 131.964 247.508 135.606 247.508C139.249 247.508 142.825 247.305 146.403 246.961L135.606 137.509L167.511 242.761C174.526 240.698 181.122 237.885 187.449 234.511L135.606 137.509L205.387 222.555C210.951 218.021 216.044 212.866 220.653 207.289L135.607 137.508L232.609 189.415C235.983 183.087 238.796 176.417 240.858 169.477L135.607 137.508L245.059 148.305C245.403 144.728 245.606 141.151 245.606 137.508C245.606 133.866 245.403 130.289 245.059 126.711L135.607 137.508L240.858 105.54C238.796 98.6013 235.983 91.9293 232.609 85.6016L135.607 137.508L220.653 67.7272C216.044 62.1633 210.964 57.006 205.387 52.4615L135.606 137.507L187.449 40.5055C181.122 37.1318 174.452 34.318 167.511 32.2561L135.606 137.508L146.403 28.0559C142.826 27.7118 139.249 27.5083 135.606 27.5083C131.964 27.5083 128.387 27.7118 124.809 28.0559Z" fill="#F8F7F6"></path>
</g>
<defs>
<linearGradient id="paint0_linear_334_38628" x1="135" y1="0" x2="135" y2="270" gradientUnits="userSpaceOnUse">
<stop stop-color="#48515E"></stop>
<stop offset="1" stop-color="#1E2939"></stop>
</linearGradient>
<clipPath id="clip0_334_38628">
<rect width="220" height="220" fill="white" transform="translate(25 27)"></rect>
</clipPath>
</defs>
</svg></svg></g></g></svg></g><g id="dark-icon"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="1000" height="1000"><g><g transform="matrix(3.7037037037037037,0,0,3.7037037037037037,0,0)"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="270" height="270"><svg width="270" height="270" viewBox="0 0 270 270" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="270" height="270" fill="#EDECEB"></rect>
<g clip-path="url(#clip0_334_38624)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M124.809 28.0559L135.606 137.508L103.701 32.2561C96.6868 34.3185 90.0906 37.1321 83.7629 40.5056L135.606 137.507L65.8251 52.4616C60.2612 56.9955 55.1689 62.1505 50.5594 67.7273L135.605 137.508L38.6034 85.6017C35.2297 91.9294 32.4159 98.5992 30.354 105.54L135.606 137.508L26.1538 126.711C25.8097 130.289 25.6062 133.866 25.6062 137.508C25.6062 141.151 25.8097 144.728 26.1538 148.305L135.606 137.508L30.354 169.477C32.4164 176.415 35.2299 183.087 38.6034 189.415L135.605 137.508L50.5594 207.289C55.1689 212.853 60.2483 218.011 65.8251 222.555L135.606 137.509L83.7629 234.511C90.0906 237.885 96.6852 240.699 103.701 242.761L135.606 137.509L124.809 246.961C128.386 247.305 131.964 247.508 135.606 247.508C139.249 247.508 142.825 247.305 146.403 246.961L135.606 137.509L167.511 242.761C174.526 240.698 181.122 237.885 187.449 234.511L135.606 137.509L205.387 222.555C210.951 218.021 216.044 212.866 220.653 207.289L135.607 137.508L232.609 189.415C235.983 183.087 238.796 176.418 240.858 169.477L135.607 137.508L245.059 148.305C245.403 144.728 245.606 141.151 245.606 137.508C245.606 133.866 245.403 130.289 245.059 126.711L135.607 137.508L240.858 105.54C238.796 98.6013 235.983 91.9294 232.609 85.6017L135.607 137.508L220.653 67.7273C216.044 62.1634 210.964 57.0061 205.387 52.4616L135.606 137.507L187.449 40.5056C181.122 37.1319 174.452 34.3181 167.511 32.2561L135.606 137.508L146.403 28.0559C142.826 27.7119 139.249 27.5084 135.606 27.5084C131.964 27.5084 128.387 27.7119 124.809 28.0559Z" fill="url(#paint0_linear_334_38624)"></path>
</g>
<defs>
<linearGradient id="paint0_linear_334_38624" x1="135.606" y1="27.5084" x2="135.606" y2="247.508" gradientUnits="userSpaceOnUse">
<stop stop-color="#48515E"></stop>
<stop offset="1" stop-color="#1E2939"></stop>
</linearGradient>
<clipPath id="clip0_334_38624">
<rect width="220" height="220" fill="white" transform="translate(25 27)"></rect>
</clipPath>
</defs>
</svg></svg></g></g></svg></g></svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

View file

@ -0,0 +1,21 @@
{
"name": "MyWebSite",
"short_name": "MySite",
"icons": [
{
"src": "/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 404 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 639 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 335 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 283 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 541 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 556 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 599 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 907 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 534 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 624 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 709 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 552 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 479 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 516 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 480 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 636 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 501 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 429 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

BIN
public/images/gradient.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

BIN
public/images/hero.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

View file

@ -0,0 +1,21 @@
<svg width="132" height="24" viewBox="0 0 132 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_445_1593)">
<mask id="mask0_445_1593" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="132" height="23">
<path d="M131.935 0.626465H0.81543V22.6265H131.935V0.626465Z" fill="white"/>
</mask>
<g mask="url(#mask0_445_1593)">
<path d="M52.3115 2.86626C52.3115 2.34578 52.5205 1.84663 52.8925 1.4786C53.2645 1.11057 53.7691 0.903809 54.2952 0.903809C54.8213 0.903809 55.3259 1.11057 55.6979 1.4786C56.0699 1.84663 56.2789 2.34578 56.2789 2.86626C56.2597 3.37405 56.0423 3.85474 55.6724 4.20729C55.3025 4.55984 54.8089 4.75681 54.2952 4.75681C53.7816 4.75681 53.2879 4.55984 52.918 4.20729C52.5481 3.85474 52.3307 3.37405 52.3115 2.86626Z" fill="#273B7D"/>
<path d="M83.6084 15.9542C83.6084 14.865 84.4952 13.9849 85.5879 13.9849C86.1155 13.9849 86.6215 14.1923 86.9945 14.5613C87.3675 14.9304 87.5771 15.4309 87.5771 15.9528C87.5771 16.4748 87.3675 16.9753 86.9945 17.3444C86.6215 17.7134 86.1155 17.9208 85.5879 17.9208C84.4966 17.9208 83.6084 17.0393 83.6084 15.9528" fill="#499FDD"/>
<path d="M19.7555 15.1028C18.0481 15.1028 16.8601 13.7608 16.8601 11.8421C16.8601 9.9247 18.0481 8.58406 19.7569 8.58406C21.4739 8.58406 22.6744 9.9247 22.6744 11.8421C22.6744 13.7908 21.5002 15.1028 19.7555 15.1028ZM19.7555 5.71829C16.1418 5.71829 13.5186 8.29434 13.5186 11.8421C13.5186 15.3911 16.1432 17.9658 19.7555 17.9658C23.3844 17.9658 26.0173 15.3911 26.0173 11.8434C26.0173 8.29434 23.3844 5.71829 19.7569 5.71829H19.7555ZM48.469 12.1496C48.3432 11.9089 48.1842 11.6868 47.9966 11.4895L47.886 11.3761L48.0021 11.2667C48.1679 11.0932 48.3377 10.8882 48.5007 10.6504L51.6917 5.96018H47.8184L45.4216 9.62951C45.2863 9.8263 45.0128 9.9247 44.6025 9.9247H44.0569V2.98781C44.0569 1.60071 43.1825 1.41211 42.239 1.41211H40.6227L40.6268 17.7854H44.0582V12.8739H44.3801C44.771 12.8739 45.0362 12.9189 45.1592 13.1294L47.0517 16.6634C47.5807 17.6228 48.107 17.7854 49.0989 17.7854H51.7277L49.7689 14.5821L48.4704 12.1496H48.469ZM65.1258 5.69096C63.3797 5.69096 62.2663 6.45899 61.6419 7.10812L61.4347 7.31585L61.3601 7.03296C61.1778 6.33736 60.5589 5.95608 59.6292 5.95608H58.0917L58.1014 17.7813H61.5092V12.3313C61.5092 11.7983 61.5783 11.3364 61.722 10.9141C62.1005 9.63634 63.1586 8.84235 64.4806 8.84235C65.5443 8.84235 65.9601 9.39856 65.9601 10.8335V15.9842C65.9601 17.2087 66.5333 17.7813 67.7724 17.7813H69.3942L69.3887 10.2595C69.3887 7.27212 67.9148 5.69232 65.1258 5.69232V5.69096ZM54.3357 5.96018H52.7209L52.7319 15.1042V17.7854H54.4545L54.5153 17.7882L55.3193 17.7854H56.1178V17.7813H56.1232L56.1302 7.75726C56.1302 6.54782 55.5459 5.96154 54.3372 5.96154L54.3357 5.96018ZM33.1397 15.1028C31.4323 15.1028 30.243 13.7608 30.243 11.8421C30.243 9.9247 31.4324 8.58406 33.1412 8.58406C34.8541 8.58406 36.0587 9.9247 36.0587 11.8421C36.0587 13.7908 34.8845 15.1028 33.1412 15.1028H33.1397ZM33.1397 5.71829C29.5233 5.71829 26.8986 8.29434 26.8986 11.8421C26.8986 15.3911 29.5233 17.9658 33.1412 17.9658C36.7645 17.9658 39.4029 15.3911 39.4029 11.8434C39.4029 8.29434 36.7645 5.71829 33.1412 5.71829" fill="#273B7D"/>
<path d="M106.182 15.1032C104.474 15.1032 103.284 13.7612 103.284 11.8425C103.284 9.92516 104.474 8.58452 106.182 8.58452C107.897 8.58452 109.101 9.92516 109.101 11.8425C109.101 13.7913 107.927 15.1032 106.182 15.1032ZM106.182 5.71875C102.565 5.71875 99.9424 8.2948 99.9424 11.8425C99.9424 15.3916 102.565 17.9663 106.182 17.9663C109.807 17.9663 112.444 15.3916 112.444 11.8439C112.444 8.2948 109.805 5.71875 106.182 5.71875Z" fill="#499FDD"/>
<path d="M76.5739 14.5826C74.7104 14.5826 74.0474 12.9755 74.0474 11.4681C74.0474 10.8039 74.2172 8.64063 76.3957 8.64063C77.4773 8.64063 78.9181 8.94675 78.9181 11.5788C78.9181 14.0619 77.6431 14.5826 76.5739 14.5826ZM80.6877 5.92929C80.0412 5.92929 79.5439 6.18484 79.2939 6.65086L79.1999 6.83125L79.0425 6.69459C78.4927 6.22447 77.5064 5.66553 75.9053 5.66553C72.7185 5.66553 70.5732 8.03386 70.5732 11.5556C70.5732 15.0759 72.7931 17.5358 75.9689 17.5358C77.0533 17.5358 77.9111 17.2844 78.5907 16.776L78.8532 16.5806V16.9085C78.8532 18.4883 77.8213 19.3602 75.9495 19.3602C75.0392 19.3602 74.2118 19.1416 73.6564 18.942C72.9354 18.7261 72.5099 18.9052 72.2184 19.6226L71.9477 20.2841L71.565 21.2516L71.8012 21.376C73.0003 22.0046 74.5599 22.3804 75.9689 22.3804C78.8698 22.3804 82.2597 20.9113 82.2597 16.776L82.2721 5.92929H80.6877Z" fill="#273B7D"/>
<path d="M7.06698 14.9678L4.29316 14.9651V11.6852C4.29316 10.9828 4.56806 10.6193 5.17449 10.5346H7.06698C8.41659 10.5346 9.28961 11.3764 9.29099 12.7389C9.28961 14.1383 8.4387 14.9665 7.06698 14.9665V14.9678ZM4.29316 6.11772V5.25403C4.29316 4.49829 4.61642 4.13888 5.32507 4.09241H6.74516C7.96216 4.09241 8.69153 4.81261 8.69153 6.01933C8.69153 6.93768 8.19144 8.01047 6.78934 8.01047H4.29316V6.11772ZM10.6088 9.39211L10.1073 9.11332L10.5453 8.74297C11.055 8.30976 11.9073 7.33537 11.9073 5.65444C11.9073 3.07976 9.89056 1.41797 6.76725 1.41797H2.79711C2.35039 1.43408 1.92708 1.61961 1.61487 1.93611C1.30266 2.25261 1.1255 2.67582 1.12012 3.11802V17.727H6.83765C10.309 17.727 12.5496 15.8575 12.5496 12.9617C12.5496 11.4024 11.8258 10.0699 10.6088 9.39211Z" fill="#273B7D"/>
<path d="M127.664 5.73096C126.961 5.73352 126.267 5.89241 125.634 6.19589C125.001 6.49937 124.445 6.93969 124.007 7.48431L123.761 7.79317L123.567 7.44741C122.935 6.30903 121.849 5.73096 120.339 5.73096C118.755 5.73096 117.692 6.60559 117.199 7.1249L116.876 7.47065L116.751 7.01557C116.572 6.3596 115.982 6.00018 115.09 6.00018H113.657L113.643 17.7803H116.897V12.5804C116.897 12.124 116.955 11.6744 117.069 11.2029C117.38 9.94557 118.234 8.594 119.669 8.72929C120.553 8.81402 120.987 9.49049 120.987 10.797V17.7803H124.263V12.5804C124.263 12.0105 124.317 11.5842 124.447 11.1578C124.71 9.95787 125.602 8.72792 126.986 8.72792C127.989 8.72792 128.359 9.28823 128.359 10.797V16.0584C128.359 17.2474 128.895 17.7803 130.098 17.7803H131.629L131.632 10.2599C131.632 7.25472 130.295 5.73096 127.664 5.73096ZM98.0563 13.6901C98.0466 13.7024 96.6473 15.1619 94.8031 15.1619C93.1234 15.1619 91.4271 14.1424 91.4271 11.867C91.4271 9.90184 92.7421 8.5284 94.6263 8.5284C95.2369 8.5284 95.9332 8.74432 96.0423 9.10921L96.0575 9.1707C96.1271 9.42191 96.2785 9.64338 96.4883 9.80077C96.6981 9.95816 96.9545 10.0427 97.2178 10.0412L98.9998 10.044V8.50243C98.9998 6.46892 96.3848 5.73096 94.6263 5.73096C90.8634 5.73096 88.1338 8.32204 88.1338 11.8916C88.1338 15.4585 90.8331 18.0468 94.5573 18.0468C97.787 18.0468 99.5441 15.9464 99.5607 15.9259L99.6546 15.8111L98.2428 13.4947L98.0563 13.6901Z" fill="#499FDD"/>
</g>
</g>
<defs>
<clipPath id="clip0_445_1593">
<rect width="132" height="23" fill="white" transform="translate(0 0.197754)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

View file

@ -0,0 +1,17 @@
<svg width="124" height="17" viewBox="0 0 124 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_445_1581)">
<mask id="mask0_445_1581" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="1" width="124" height="16">
<path d="M123.871 1.62646H0V16.6265H123.871V1.62646Z" fill="white"/>
</mask>
<g mask="url(#mask0_445_1581)">
<path d="M80.2256 16.0489H76.8382V2.22461L87.7325 2.23358C87.7325 2.23358 89.7271 2.15918 90.996 3.41274C90.996 3.41274 92.2911 4.49423 92.2911 7.1376V16.0468H88.9125V6.90733C88.9125 6.90733 88.9541 5.97512 88.6365 5.64798C88.6365 5.64798 88.3557 5.29264 87.8218 5.29264H80.2173L80.2244 16.044L80.2256 16.0489ZM94.6455 16.0465V3.10362V2.23493H108.24V5.30709L98.0122 5.3063V7.65508H105.117V10.6216H98.0122V12.9784H108.303V16.0513H94.6375L94.6455 16.0465ZM70.9353 16.0465V3.10362V2.23493H74.3084V16.0513H70.9353V16.0465ZM113.095 16.0465V5.30312H109.911V2.23096H122.576V5.30312H116.471V16.0465H113.097H113.095ZM59.7948 16.0465V5.30312H56.6107V2.23096H69.2757V5.30312H63.1703V16.0465H59.7972H59.7948ZM49.6231 7.64555C50.4473 7.6392 50.9405 7.64635 51.139 7.52549C51.139 7.52549 51.4853 7.33397 51.4893 6.92297L51.4901 6.01935C51.4901 5.60645 51.1398 5.41683 51.1398 5.41683C50.8768 5.2739 50.4311 5.30074 49.373 5.29971H42.8015V7.64532H49.774L49.6231 7.64555ZM51.4407 16.0465V11.3315C51.4407 10.9076 51.0864 10.73 51.0864 10.73C50.9266 10.6308 50.4481 10.6129 49.7437 10.6129H49.9074H42.8015V16.0458H39.4284V3.10282V2.23414H49.9574C51.7758 2.2397 53.0312 2.50713 53.8959 3.3466C54.7455 4.21211 54.8583 5.34441 54.863 6.52278V7.5066C54.874 8.50789 54.3479 9.42104 53.7204 9.95305L53.8465 10.0156C54.1026 10.1396 54.2426 10.3154 54.2426 10.3154C54.7199 10.9248 54.7141 11.4493 54.713 12.094V16.0492H51.4408L51.4407 16.0465ZM0.431275 2.23017V3.09965V16.0426H3.80438V10.6145H14.0237V7.64635H3.80438V5.29915H15.6833V2.22699H0.429688L0.431275 2.23017Z" fill="#231F20"/>
<path d="M121.435 13.6032V14.2375H122.026C122.186 14.2375 122.341 14.1939 122.364 13.9566C122.398 13.642 122.171 13.6032 122.026 13.6032H121.435ZM121.198 13.3948H122.021C122.307 13.3948 122.583 13.4484 122.606 13.8642C122.616 14.1025 122.544 14.1889 122.364 14.3248C122.554 14.4459 122.559 14.4747 122.587 14.7942C122.606 15.0364 122.573 15.0752 122.675 15.2349H122.394L122.355 15.0027C122.316 14.7843 122.423 14.4459 122.041 14.4459H121.435V15.235H121.198V13.3948ZM121.817 12.8866C121.004 12.8866 120.341 13.5496 120.347 14.3683C120.347 15.1814 121.005 15.8444 121.823 15.8405C122.637 15.8405 123.3 15.1814 123.3 14.3635C123.3 13.5496 122.636 12.8866 121.817 12.8866ZM121.823 16.0326C120.899 16.0326 120.152 15.2872 120.152 14.3635C120.148 13.4432 120.899 12.6929 121.823 12.6929C122.743 12.6929 123.494 13.4432 123.494 14.3635C123.494 15.2878 122.743 16.0294 121.823 16.0326Z" fill="#231F20"/>
<path d="M34.7894 16.184C35.8852 15.8117 36.738 14.5498 36.9428 12.9633V12.5048H31.325V16.1844L34.7894 16.184ZM36.9436 5.75816V5.34327C36.7283 3.68769 35.8121 2.38307 34.6441 2.07657H31.3258V5.75776L36.9436 5.75816ZM17.1719 12.5052V12.9597C17.3754 14.5478 18.228 15.812 19.327 16.1844H22.7731V12.5048L17.1719 12.5052ZM19.4707 2.07935C18.3042 2.38601 17.3855 3.69126 17.1719 5.34923V5.76118H22.7731V2.07999L19.4707 2.07935ZM36.9476 7.29305H31.3297V10.9742H36.9476V7.29305ZM24.3064 16.1863H29.802V12.5067H24.3064V16.1863ZM29.802 2.07617H24.3064V5.75737H29.802V2.07617ZM17.1767 10.9695H22.7779V7.28828H17.1767V10.9695Z" fill="#EE2E24"/>
</g>
</g>
<defs>
<clipPath id="clip0_445_1581">
<rect width="124" height="16" fill="white" transform="translate(0 0.697754)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -0,0 +1,51 @@
<svg width="64" height="27" viewBox="0 0 64 27" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_445_1605)">
<mask id="mask0_445_1605" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="1" width="64" height="26">
<path d="M63.2565 1.62646H0.935547V26.6265H63.2565V1.62646Z" fill="white"/>
</mask>
<g mask="url(#mask0_445_1605)">
<path d="M0.935547 24.8857H13.0528V26.6203H0.935547V24.8857Z" fill="#1F70C1"/>
<path d="M0.935547 21.5586H13.0528V23.2993H0.935547V21.5586Z" fill="#1F70C1"/>
<path d="M4.39258 18.2378H9.59009V19.9785H4.39258V18.2378Z" fill="#1F70C1"/>
<path d="M4.39258 14.9165H9.59009V16.6573H4.39258V14.9165Z" fill="#1F70C1"/>
<path d="M4.39258 11.5957H9.59009V13.3364H4.39258V11.5957Z" fill="#1F70C1"/>
<path d="M4.39258 8.26807H9.59009V10.0088H4.39258V8.26807Z" fill="#1F70C1"/>
<path d="M13.0528 4.94727H0.935547V6.68802H13.0528V4.94727Z" fill="#1F70C1"/>
<path d="M13.0528 1.62646H0.935547V3.36722H13.0528V1.62646Z" fill="#1F70C1"/>
<path d="M14.7812 23.2993H33.4171C33.7319 22.7623 33.9664 22.1759 34.1084 21.5586H14.7812V23.2993Z" fill="#1F70C1"/>
<path d="M31.9663 14.9165H18.2441V16.6573H33.4169C33.0218 15.9905 32.5341 15.4042 31.9663 14.9165Z" fill="#1F70C1"/>
<path d="M18.2441 11.5957V13.3364H31.9663C32.5465 12.8487 33.0341 12.2623 33.4169 11.5957H18.2441Z" fill="#1F70C1"/>
<path d="M33.4172 4.94727H14.7812V6.68802H34.1084C33.948 6.07073 33.7134 5.48435 33.4172 4.94727Z" fill="#1F70C1"/>
<path d="M27.6887 1.62646H14.7812V3.36722H32.1392C30.9788 2.29311 29.4047 1.62646 27.6887 1.62646Z" fill="#1F70C1"/>
<path d="M23.4354 8.26855H18.2441V10.0093H23.4354V8.26855Z" fill="#1F70C1"/>
<path d="M28.6328 10.0088H34.0649C34.2192 9.45329 34.2994 8.86685 34.2994 8.26807H28.6328V10.0088Z" fill="#1F70C1"/>
<path d="M18.2441 18.2378H23.4354V19.9785H18.2441V18.2378Z" fill="#1F70C1"/>
<path d="M28.6328 18.2378V19.9785H34.2994C34.2994 19.3797 34.2192 18.7933 34.0649 18.2378H28.6328Z" fill="#1F70C1"/>
<path d="M14.7812 26.608L27.6887 26.6265C29.4171 26.6265 30.9788 25.9598 32.1454 24.8857H14.7812V26.608Z" fill="#1F70C1"/>
<path d="M35.5586 24.8857H44.2129V26.6203H35.5586V24.8857Z" fill="#1F70C1"/>
<path d="M35.5586 21.5586H44.2129V23.2993H35.5586V21.5586Z" fill="#1F70C1"/>
<path d="M39.0156 18.2378H44.2131V19.9785H39.0156V18.2378Z" fill="#1F70C1"/>
<path d="M39.0156 14.9165H44.2131V16.6573H39.0156V14.9165Z" fill="#1F70C1"/>
<path d="M46.6204 4.94727H35.5586V6.68802H47.2191L46.6204 4.94727Z" fill="#1F70C1"/>
<path d="M45.4722 1.62646H35.5586V3.36722H46.071L45.4722 1.62646Z" fill="#1F70C1"/>
<path d="M54.5957 24.8857H63.2562V26.6203H54.5957V24.8857Z" fill="#1F70C1"/>
<path d="M54.5957 21.5586H63.2562V23.2992H54.5957V21.5586Z" fill="#1F70C1"/>
<path d="M54.5957 18.2378H59.7932V19.9785H54.5957V18.2378Z" fill="#1F70C1"/>
<path d="M54.5957 14.9165H59.7932V16.6573H54.5957V14.9165Z" fill="#1F70C1"/>
<path d="M54.5958 13.3364H59.7933V11.5957H54.5958H49.8922L49.4045 13.0031L48.9168 11.5957H44.2131H39.0156V13.3364H44.2131V11.7376L44.7625 13.3364H54.0465L54.5958 11.7376V13.3364Z" fill="#1F70C1"/>
<path d="M59.7932 8.26807H51.0401L50.4414 10.0088H59.7932V8.26807Z" fill="#1F70C1"/>
<path d="M53.3429 1.62646L52.7441 3.36722H63.2565V1.62646H53.3429Z" fill="#1F70C1"/>
<path d="M49.4054 26.608L50.0041 24.8857H48.8066L49.4054 26.608Z" fill="#1F70C1"/>
<path d="M48.2556 23.2993H50.5519L51.1692 21.5586H47.6445L48.2556 23.2993Z" fill="#1F70C1"/>
<path d="M47.0896 19.9785H51.7192L52.3303 18.2378H46.4785L47.0896 19.9785Z" fill="#1F70C1"/>
<path d="M45.9289 16.6573H52.8857L53.4783 14.9165H45.3301L45.9289 16.6573Z" fill="#1F70C1"/>
<path d="M39.0156 10.0088H48.3674L47.7687 8.26807H39.0156V10.0088Z" fill="#1F70C1"/>
<path d="M51.5957 6.68802H63.2562V4.94727H52.1883L51.5957 6.68802Z" fill="#1F70C1"/>
</g>
</g>
<defs>
<clipPath id="clip0_445_1605">
<rect width="64" height="26" fill="white" transform="translate(0 0.697754)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -0,0 +1,12 @@
<svg width="105" height="28" viewBox="0 0 105 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_445_1589)">
<path d="M22.7423 16.0064C21.0127 16.0064 19.6737 14.6674 19.6737 12.882C19.6737 11.1523 21.0127 9.81324 22.7423 9.81324C24.4719 9.81324 25.811 11.1523 25.811 12.882C25.811 14.6116 24.4162 16.0064 22.7423 16.0064ZM28.3217 9.70165V7.58148H24.5835C23.9698 7.30251 23.3561 7.24672 22.7423 7.24672C19.5063 7.24672 16.9956 9.70166 16.9956 12.9378C16.9956 16.1738 19.5063 18.5729 22.6865 18.5729C25.8668 18.5729 28.3775 16.118 28.3775 12.9378C28.3775 11.8219 28.0428 10.8176 27.4848 10.0364L28.3217 9.70165ZM10.3003 16.0064C8.57066 16.0064 7.23161 14.6674 7.23161 12.882C7.23161 11.1523 8.57066 9.81324 10.3003 9.81324C12.0299 9.81324 13.3689 11.1523 13.3689 12.882C13.3689 14.6116 12.0857 16.0064 10.3003 16.0064ZM10.3003 7.24672C7.06423 7.24672 4.60929 9.70165 4.60929 12.882C4.60929 16.0622 7.12002 18.5729 10.3003 18.5729C13.4805 18.5729 15.9913 16.118 15.9913 12.9378C15.9913 9.75745 13.5363 7.24672 10.3003 7.24672ZM0.871094 18.294H3.49341V3.11796H0.871094V18.294ZM29.4934 18.294H32.1157V7.58148H29.4934V18.294ZM22.7423 22.0322C21.0127 22.0322 19.6737 20.6931 19.6737 18.9635H16.9956C16.9956 22.1996 19.5063 24.5987 22.6865 24.5987C25.8668 24.5987 28.4333 22.1438 28.4333 18.9635H25.811C25.7552 20.7489 24.4162 22.0322 22.7423 22.0322ZM41.9913 11.8219C42.3818 10.427 43.3861 9.64586 44.781 9.64586C46.1758 9.64586 47.2359 10.427 47.5149 11.8219H41.9913ZM44.8925 7.24672C41.6565 7.24672 39.2574 9.70166 39.2574 12.9378C39.2574 16.1738 41.4333 18.4614 44.8925 18.4614C46.7337 18.4614 48.4634 17.736 49.7466 16.4528L47.9054 14.6116C47.0127 15.5043 46.0642 16.0064 44.9483 16.0064C43.4419 16.0064 42.3818 15.1137 42.0471 13.8305H50.3604V13.2167C50.3604 9.70165 48.0728 7.24672 44.8925 7.24672ZM68.4376 7.24672C67.0985 7.24672 65.9827 7.69307 65.2016 8.58577V3.06217H62.5792V18.2382H65.2016V12.4356C65.2016 10.8734 66.15 9.86903 67.7681 9.86903C69.2745 9.86903 70.1114 10.8176 70.1114 12.4356V18.2382H72.7337V11.9893C72.8453 9.03213 70.9483 7.24672 68.4376 7.24672ZM56.8882 9.86903C58.0041 9.86903 58.8968 10.427 59.6222 11.2639L61.4634 9.42269C60.4033 8.08363 58.841 7.30251 56.8882 7.30251C53.6522 7.30251 51.1973 9.75745 51.1973 12.9378C51.1973 16.118 53.708 18.5729 56.8882 18.5729C58.7295 18.5729 60.4033 17.6802 61.4634 16.4528L59.6222 14.6116C58.8968 15.3927 57.9483 16.0064 56.8882 16.0064C55.1586 16.0064 53.9312 14.6674 53.9312 12.9378C53.8196 11.2081 55.2144 9.86903 56.8882 9.86903ZM37.4719 4.28964H34.8496V7.58148H33.4548V9.92483H34.8496V18.2382H37.4719V9.92483H38.9784V7.58148H37.4719V4.28964ZM30.8883 2.7832C29.9398 2.7832 29.1586 3.56432 29.1586 4.6244C29.1586 5.5729 29.9398 6.35401 30.8883 6.35401C31.9483 6.35401 32.7295 5.5729 32.7295 4.6244C32.6179 3.56432 31.8368 2.7832 30.8883 2.7832Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.4103 0.626465V6.03849C86.1699 6.03849 82.8223 9.38612 82.8223 13.6265C82.8223 17.7552 86.1699 21.2145 90.4103 21.2145V26.6265C83.2129 26.6265 77.3545 20.8239 77.3545 13.6265C77.3545 6.42904 83.2129 0.626465 90.4103 0.626465Z" fill="#00B8FD"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M104.815 8.6416H93.1543V13.9421H99.459V20.2468H104.815V8.6416Z" fill="#00B8FD"/>
</g>
<defs>
<clipPath id="clip0_445_1589">
<rect width="105" height="27" fill="white" transform="translate(0 0.197754)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -0,0 +1,15 @@
<svg width="90" height="26" viewBox="0 0 90 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_445_1660)">
<mask id="mask0_445_1660" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="90" height="25">
<path d="M89.3906 0.626465H0.585938V24.6265H89.3906V0.626465Z" fill="white"/>
</mask>
<g mask="url(#mask0_445_1660)">
<path d="M12.7969 23.0795C11.461 23.3141 10.1016 23.3844 8.69536 23.5717L4.40619 11.0093V24.1109C3.07031 24.2515 1.85158 24.439 0.585938 24.6265V0.626465H4.14854L9.02343 14.2439V0.626465H12.7969V23.0795ZM20.1797 9.41553C21.6329 9.41553 23.8595 9.3452 25.1954 9.3452V13.0951C23.5312 13.0951 21.586 13.0951 20.1797 13.1655V18.7437C22.3829 18.6031 24.586 18.4154 26.8125 18.3451V21.9543L16.4296 22.7747V0.626465H26.8125V4.37647H20.1797V9.41553ZM40.7578 4.37656H36.8672V21.6265C35.6016 21.6265 34.3359 21.6265 33.1174 21.6733V4.37656H29.2268V0.626465H40.758L40.7578 4.37656ZM46.8515 9.15779H51.9844V12.9077H46.8515V21.4156H43.1716V0.626465H53.6484V4.37647H46.8515V9.15779ZM59.7421 18.1343C61.875 18.181 64.0311 18.3454 66.1172 18.4623V22.1655C62.7657 21.9544 59.4141 21.7438 55.9922 21.6733V0.626465H59.7421V18.1343ZM69.2812 22.4233C70.4765 22.4938 71.7421 22.5641 72.9609 22.7045V0.626465H69.2812V22.4233ZM89.3907 0.626465L84.6328 12.0406L89.3907 24.6265C87.9843 24.439 86.5781 24.1811 85.1718 23.9467L82.4766 17.0094L79.7347 23.3844C78.375 23.1498 77.0625 23.0795 75.7034 22.892L80.5315 11.8998L76.172 0.626465H80.203L82.664 6.93117L85.2891 0.626465H89.3907Z" fill="#D81F26"/>
</g>
</g>
<defs>
<clipPath id="clip0_445_1660">
<rect width="90" height="25" fill="white" transform="translate(0 0.197754)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.8 KiB

View file

@ -0,0 +1,16 @@
<svg width="137" height="34" viewBox="0 0 137 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M100.14 8.08055C100.14 8.30244 100.098 8.52218 100.015 8.72721C99.9326 8.93223 99.8113 9.11854 99.6584 9.27547C99.5055 9.4324 99.324 9.5569 99.1242 9.64184C98.9244 9.72677 98.7103 9.77048 98.494 9.77048C98.2778 9.77048 98.0636 9.72677 97.8638 9.64184C97.664 9.5569 97.4825 9.4324 97.3296 9.27547C97.1768 9.11854 97.0555 8.93223 96.9728 8.72721C96.8901 8.52218 96.8476 8.30244 96.8477 8.08055C96.8476 7.85866 96.8901 7.63894 96.9728 7.43391C97.0555 7.22889 97.1768 7.04258 97.3296 6.88565C97.4825 6.72871 97.664 6.60422 97.8638 6.51928C98.0636 6.43434 98.2778 6.39062 98.494 6.39062C98.7103 6.39062 98.9244 6.43434 99.1242 6.51928C99.324 6.60422 99.5055 6.72871 99.6584 6.88565C99.8113 7.04258 99.9326 7.22889 100.015 7.43391C100.098 7.63894 100.14 7.85866 100.14 8.08055Z" fill="#999B9E"/>
<path d="M129.417 15.4995H125.227V19.7758H129.417V15.4995Z" fill="#999B9E"/>
<path d="M46.3095 15.4995H42.1191V19.7758H46.3095V15.4995Z" fill="#999B9E"/>
<path d="M33.7392 15.4995H29.5488V19.7758H33.7392V15.4995Z" fill="#999B9E"/>
<path d="M21.3623 15.4995H17.1719V19.7758H21.3623V15.4995Z" fill="#999B9E"/>
<path d="M8.542 15.4995H4.35156V19.7758H8.542V15.4995Z" fill="#999B9E"/>
<path d="M14.4166 6.96401H14.9138C18.125 6.96401 19.6217 8.68186 20.2471 13.2631L21.2415 13.2191L21.1088 5.95068H4.76846L4.60742 13.2191L5.56429 13.2631C5.73002 11.5452 5.92878 10.6201 6.36013 9.69494C7.12267 7.97682 8.71408 6.96401 10.67 6.96401H11.3662V22.7777C11.3662 24.4516 11.2668 24.9803 10.8693 25.3768C10.5376 25.6851 9.87441 25.8172 9.11161 25.8172H8.34907V26.8743H17.4337V25.8172H16.6665C15.9086 25.8172 15.2408 25.6848 14.914 25.3768C14.5163 24.9803 14.4169 24.4514 14.4169 22.7777L14.4166 6.96401Z" fill="#ED008C"/>
<path d="M57.6393 26.8745L62.9336 8.40133V22.8979C62.9336 24.4799 62.8436 25.0359 62.4846 25.4207C62.2151 25.7199 61.5904 25.8484 60.8979 25.8484H60.6286V26.8745H68.1122V25.8484H67.7227C67.0343 25.8484 66.4058 25.7201 66.1365 25.4207C65.7769 25.0359 65.6872 24.4799 65.6872 22.8979V10.5396C65.6872 8.9573 65.7769 8.35866 66.1365 7.97388C66.4357 7.71736 67.0343 7.54617 67.7227 7.54617H68.1122V6.5625H62.3051L57.9346 21.4865L53.6583 6.5625H47.8811V7.54617H48.4197C50.0064 7.54617 50.3056 7.88829 50.3056 9.94097V21.7003C50.3056 23.5819 50.2158 24.3517 49.9463 24.9076C49.6471 25.4636 49.0141 25.8484 48.3598 25.8484H47.8809V26.8745H54.047V25.8484H53.6581C52.8799 25.8484 52.2511 25.549 51.8876 24.9503C51.5328 24.3517 51.443 23.7957 51.443 21.7003V8.40159L56.7069 26.8747L57.6393 26.8745Z" fill="#999B9E"/>
<path d="M74.5464 12.4209C70.8347 12.4209 68.4102 15.3287 68.4102 19.9045C68.4102 24.309 70.8347 27.3025 74.4528 27.3025C78.1041 27.3025 80.5289 24.309 80.5289 19.8618C80.5289 15.457 78.1042 12.4209 74.5464 12.4209ZM74.4268 13.4043C75.5002 13.4043 76.4279 14.0885 76.9368 15.2432C77.4158 16.3122 77.6252 17.7662 77.6252 19.8616C77.6252 24.1803 76.5775 26.3183 74.4525 26.3183C72.3314 26.3183 71.3092 24.18 71.3092 19.8186C71.3092 17.7659 71.5228 16.3122 72.0018 15.2432C72.4768 14.1315 73.4389 13.4043 74.4268 13.4043Z" fill="#999B9E"/>
<path d="M85.5028 6.34863L81.252 6.56248V7.50324H81.4573C82.7147 7.50324 82.9884 7.93094 82.9884 9.9407V23.8384C82.9884 25.6343 82.9285 26.1049 82.6892 26.8745H83.677C84.4208 25.6343 84.6047 25.4207 84.9042 25.4207C85.0496 25.4207 85.1948 25.4633 85.4089 25.6772C86.8796 26.8745 87.5082 27.131 88.8553 27.131C92.0836 27.131 94.4186 24.0093 94.4186 19.5621C94.4186 15.3714 92.259 12.5491 89.0306 12.5491C87.3544 12.5491 86.1314 13.3616 85.5028 14.8154V6.34863ZM88.6073 13.6181C90.5276 13.6181 91.5152 15.6708 91.5152 19.6903C91.5152 23.9237 90.4974 26.1046 88.5517 26.1046C86.3965 26.1046 85.263 23.8808 85.263 19.8186C85.263 17.7659 85.5327 16.355 86.1613 15.2858C86.7256 14.2597 87.6879 13.6181 88.6073 13.6181Z" fill="#999B9E"/>
<path d="M99.9549 12.6348L95.5889 12.8913V13.832H95.9182C97.1709 13.832 97.4407 14.2597 97.4407 16.2268V23.4536C97.4407 25.421 97.1712 25.8914 95.9182 25.8914H95.4434V26.8745H101.961V25.8914H101.49C100.229 25.8914 99.9552 25.4634 99.9552 23.4536L99.9549 12.6348Z" fill="#999B9E"/>
<path d="M107.531 6.34863L103.165 6.56248V7.50324H103.49C104.748 7.50324 105.017 7.93094 105.017 9.9407V23.4533C105.017 25.4633 104.748 25.8911 103.49 25.8911H103.016V26.8742H109.537V25.8911H109.058C107.796 25.8911 107.531 25.4631 107.531 23.4533V6.34863Z" fill="#999B9E"/>
<path d="M121.446 19.776C121.3 15.2431 119.145 12.4209 115.887 12.4209C112.739 12.4209 110.469 15.4997 110.469 19.776C110.469 24.3514 112.709 27.3022 116.182 27.3022C118.427 27.3022 119.983 26.1047 121.27 23.4534L120.373 22.983C119.325 25.2066 118.277 26.1047 116.661 26.1047C114.296 26.1047 113.283 24.2234 113.252 19.776H121.446ZM113.282 18.7067C113.308 15.4997 114.351 13.4899 116.032 13.4899C117.708 13.4899 118.696 15.457 118.666 18.7067H113.282Z" fill="#999B9E"/>
<path d="M130.988 12.0723C131.241 12.0723 131.488 12.1371 131.729 12.2669C131.97 12.3967 132.157 12.5824 132.292 12.8239C132.426 13.0653 132.493 13.3171 132.493 13.5794C132.493 13.839 132.427 14.0885 132.294 14.3279C132.162 14.5675 131.976 14.7535 131.738 14.8859C131.499 15.0183 131.249 15.0847 130.988 15.0847C130.727 15.0847 130.477 15.0186 130.238 14.8859C129.999 14.7535 129.813 14.5678 129.68 14.3279C129.547 14.0885 129.48 13.839 129.48 13.5794C129.48 13.3171 129.548 13.0653 129.683 12.8239C129.818 12.5824 130.006 12.3964 130.247 12.2669C130.489 12.1371 130.735 12.0723 130.988 12.0723ZM130.988 12.3231C130.777 12.3231 130.571 12.3772 130.371 12.4857C130.171 12.5942 130.014 12.7487 129.901 12.9501C129.788 13.1514 129.732 13.3614 129.732 13.5791C129.732 13.7958 129.787 14.0035 129.899 14.2022C130.009 14.401 130.165 14.5558 130.364 14.6669C130.564 14.778 130.772 14.8334 130.988 14.8334C131.205 14.8334 131.413 14.778 131.612 14.6669C131.812 14.556 131.966 14.4012 132.077 14.2022C132.187 14.0035 132.242 13.7958 132.242 13.5791C132.242 13.3614 132.186 13.1514 132.074 12.9501C131.961 12.7489 131.805 12.5942 131.604 12.4857C131.404 12.3772 131.198 12.3231 130.988 12.3231ZM130.327 14.4103V12.7895H130.885C131.076 12.7895 131.214 12.8046 131.299 12.8345C131.385 12.8645 131.452 12.9168 131.503 12.9914C131.554 13.0658 131.579 13.1452 131.579 13.229C131.579 13.3473 131.537 13.4506 131.452 13.5383C131.367 13.626 131.255 13.6754 131.115 13.6861C131.172 13.71 131.218 13.7386 131.252 13.7719C131.318 13.8357 131.398 13.9428 131.492 14.0932L131.69 14.4106H131.369L131.225 14.1549C131.112 13.9548 131.021 13.8294 130.953 13.7784C130.905 13.7407 130.835 13.722 130.743 13.722H130.589V14.4106L130.327 14.4103ZM130.589 13.4993H130.908C131.06 13.4993 131.164 13.4766 131.22 13.4311C131.275 13.3856 131.303 13.3255 131.303 13.2505C131.303 13.2024 131.289 13.1592 131.263 13.1212C131.236 13.0833 131.199 13.0546 131.151 13.0359C131.104 13.0172 131.016 13.0081 130.888 13.0081H130.589V13.4993Z" fill="#999B9E"/>
</svg>

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Some files were not shown because too many files have changed in this diff Show more