dere-cbai
commited on
Commit
·
311ffdc
1
Parent(s):
60baac5
minor edits
Browse files- README.md +1 -1
- src/components/Header.tsx +16 -6
README.md
CHANGED
@@ -77,7 +77,7 @@ Follow these steps:
|
|
77 |
|
78 |
```sh
|
79 |
# Step 1: Clone the repository using the project's Git URL.
|
80 |
-
git clone https://github.com/
|
81 |
|
82 |
# Step 2: Navigate to the project directory.
|
83 |
cd ai-deadlines
|
|
|
77 |
|
78 |
```sh
|
79 |
# Step 1: Clone the repository using the project's Git URL.
|
80 |
+
git clone https://github.com/scdrand23/ai-deadlines
|
81 |
|
82 |
# Step 2: Navigate to the project directory.
|
83 |
cd ai-deadlines
|
src/components/Header.tsx
CHANGED
@@ -15,13 +15,8 @@ const Header = ({ onSearch, showEmptyMessage = false }: HeaderProps) => {
|
|
15 |
<div className="flex flex-col md:flex-row md:items-center md:justify-between md:h-16 py-4 md:py-0 gap-4 md:gap-0">
|
16 |
<div className="flex items-center justify-center md:justify-start w-full md:w-auto gap-8">
|
17 |
<Link to="/" className="flex items-center gap-2">
|
18 |
-
<img
|
19 |
-
src="https://huggingface.co/front/assets/huggingface_logo.svg"
|
20 |
-
alt="Hugging Face Logo"
|
21 |
-
className="h-8 w-8"
|
22 |
-
/>
|
23 |
<span className="text-2xl font-bold text-primary">
|
24 |
-
<span className="hidden md:inline">AI Conference Deadlines</span>
|
25 |
<span className="md:hidden">AI Deadlines</span>
|
26 |
</span>
|
27 |
</Link>
|
@@ -58,6 +53,21 @@ const Header = ({ onSearch, showEmptyMessage = false }: HeaderProps) => {
|
|
58 |
)}
|
59 |
<div className="max-w-4xl mx-auto text-center">
|
60 |
<p className="text-sm text-neutral-600 py-4">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
Countdowns to top CV/NLP/ML/Robotics/AI conference deadlines. To add/edit a conference, send in a{' '}
|
62 |
<a
|
63 |
href="https://github.com/huggingface/ai-deadlines"
|
|
|
15 |
<div className="flex flex-col md:flex-row md:items-center md:justify-between md:h-16 py-4 md:py-0 gap-4 md:gap-0">
|
16 |
<div className="flex items-center justify-center md:justify-start w-full md:w-auto gap-8">
|
17 |
<Link to="/" className="flex items-center gap-2">
|
|
|
|
|
|
|
|
|
|
|
18 |
<span className="text-2xl font-bold text-primary">
|
19 |
+
<span className="hidden md:inline">AI Conference 'Call For Paper' Deadlines</span>
|
20 |
<span className="md:hidden">AI Deadlines</span>
|
21 |
</span>
|
22 |
</Link>
|
|
|
53 |
)}
|
54 |
<div className="max-w-4xl mx-auto text-center">
|
55 |
<p className="text-sm text-neutral-600 py-4">
|
56 |
+
Based on original{' '}
|
57 |
+
<a
|
58 |
+
href="https://huggingface.co/spaces/huggingface/ai-deadlines"
|
59 |
+
target="_blank"
|
60 |
+
rel="noopener noreferrer"
|
61 |
+
className="text-primary hover:underline inline-flex items-center gap-1"
|
62 |
+
>
|
63 |
+
<img
|
64 |
+
src="https://huggingface.co/front/assets/huggingface_logo.svg"
|
65 |
+
alt="HF"
|
66 |
+
className="h-4 w-4"
|
67 |
+
/>
|
68 |
+
HF version
|
69 |
+
</a>
|
70 |
+
<br />
|
71 |
Countdowns to top CV/NLP/ML/Robotics/AI conference deadlines. To add/edit a conference, send in a{' '}
|
72 |
<a
|
73 |
href="https://github.com/huggingface/ai-deadlines"
|