diff --git a/web/docusaurus.config.js b/web/docusaurus.config.js
index e93b820..ba59be1 100644
--- a/web/docusaurus.config.js
+++ b/web/docusaurus.config.js
@@ -9,7 +9,7 @@ import {themes as prismThemes} from 'prism-react-renderer';
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'TCFrame',
- tagline: 'A test generation framework.',
+ tagline: 'A test generation framework for competitive programming problems.',
favicon: 'img/logo.png',
// Set the production url of your site here
diff --git a/web/src/components/HomepageFeatures/index.js b/web/src/components/HomepageFeatures/index.js
index 25f8ad1..6e685bf 100644
--- a/web/src/components/HomepageFeatures/index.js
+++ b/web/src/components/HomepageFeatures/index.js
@@ -1,30 +1,54 @@
import clsx from 'clsx';
+import CodeBlock from '@theme/CodeBlock';
import Heading from '@theme/Heading';
import styles from './styles.module.css';
+const ioFormats =
+`void InputFormat() {
+ LINE(N);
+ LINES(A) % SIZE(N);
+}
+
+void OutputFormat() {
+ LINE(answer);
+}
+`
+
+const constraints =
+`void Constraints() {
+ CONS(1 <= N && N <= 1000);
+ CONS(eachElementBetween(A, 1, 1000000));
+}`
+
+const testCases =
+`void TestCases() {
+ CASE(N = 1, A = {10});
+ CASE(N = 100, randomArray());
+}`
+
const FeatureList = [
{
- title: 'Various problem types',
+ title: 'Define input/output formats',
description: (
- <>
- Supports batch and interactive problems, as well as ICPC- and IOI-style problems.
- >
+
{description}