Revert yandex ab-test
All checks were successful
Deploy / build-and-publish (push) Successful in 2m17s
Deploy / deploy (push) Successful in 22s

This commit is contained in:
2025-02-02 18:02:52 +03:00
parent 856ef353b5
commit 2a28be702c
3 changed files with 33 additions and 57 deletions

View File

@@ -1,30 +1,19 @@
<script lang="ts">
import { onMount } from "svelte";
import { t } from "$lib/translations";
import {t} from "$lib/translations";
import Project from "./Project.svelte";
import { projects } from "./projects";
let wrapperClass = "grid gap-8 md:grid-cols-2 lg:grid-cols-3";
onMount(() => {
window.ym(88895893, "getClientID", function (clientID) {
const university_test_group =
Number(clientID.slice(-1)) % 2 === 0 ? "a" : "b";
if (university_test_group === "b") {
wrapperClass = wrapperClass.replace("lg:grid-cols-3", "lg:grid-cols-2")
}
});
});
import {projects} from "./projects";
</script>
<section class="px-2 md:px-8 mb-16 max-w-[1280px] mx-auto">
<h2 class="text-3xl mb-4 md:text-4xl">
{$t("projects.h")}
{$t('projects.h')}
</h2>
<div class={wrapperClass}>
<div class="grid gap-8 md:grid-cols-2 lg:grid-cols-3">
{#each projects as project}
<Project {project}></Project>
<Project
project={project}
></Project>
{/each}
</div>
</section>